Dockerized Version of Stagit - with script to recursively generate a git projects overview
8.0K
Dockerized Version of stagit (https://git.codemadness.org/stagit/) - with script to recursively generate an overview over several git projects.
docker run --rm -v "$PWD/html:/html" -v "$PWD/repositories:/repositories" servercontainers/stagit
docker-compose.yml
version: '3.3'
services:
webserver:
image: servercontainers/nginx
restart: always
environment:
NGINX_RAW_CONFIG_webserver: server {listen 80; listen [::]:80; server_name webserver; location / { root /data; autoindex on; }}
volumes:
- '/path/to/html:/data'
Content type
Image
Digest
sha256:8c2ac4250…
Size
10.5 MB
Last updated
2 months ago
docker pull servercontainers/stagit