Synchronizes configurations files between the container and shared volumes
617
Synchronizes configurations files between the container and shared volumes
Create a Dockerfile that extends this image
FROM hourliert/nginx-proxy-sync-conf
COPY htpasswd .
COPY vhost .
COPY vhost_location .
Then in your docker-compose file:
version: '2'
services:
registry-config:
build: .
volumes:
- proxy_vhostd:/vhost.d
- proxy_htpasswd:/htpasswd
environment:
- VIRTUAL_HOST=${REGISTRY_VIRTUAL_HOST}
Content type
Image
Digest
Size
4 MB
Last updated
about 10 years ago
docker pull hourliert/nginx-proxy-sync-conf