Template for creating private docker registry using docker-compose
docker run \
--entrypoint htpasswd \
httpd:2 -Bbn testuser testpassword > auth/htpasswd
docker-compose up -d
docker stack deploy --compose-file docker-compose.yml registry
Template for creating private docker registry using docker-compose
docker run \
--entrypoint htpasswd \
httpd:2 -Bbn testuser testpassword > auth/htpasswd
docker-compose up -d
docker stack deploy --compose-file docker-compose.yml registry