├── .dockerignore ├── Dockerfile ├── README.md └── copy ├── docker-entrypoint.sh └── etc ├── nginx └── nginx.conf ├── supervisor └── supervisord.conf └── viewvc └── viewvc.conf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmanley/viewvc-docker/HEAD/.dockerignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmanley/viewvc-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmanley/viewvc-docker/HEAD/README.md -------------------------------------------------------------------------------- /copy/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmanley/viewvc-docker/HEAD/copy/docker-entrypoint.sh -------------------------------------------------------------------------------- /copy/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmanley/viewvc-docker/HEAD/copy/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /copy/etc/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmanley/viewvc-docker/HEAD/copy/etc/supervisor/supervisord.conf -------------------------------------------------------------------------------- /copy/etc/viewvc/viewvc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmanley/viewvc-docker/HEAD/copy/etc/viewvc/viewvc.conf --------------------------------------------------------------------------------