You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
475 B
22 lines
475 B
version: '3'
|
|
|
|
services:
|
|
registry:
|
|
image: registry:latest
|
|
container_name: registry
|
|
restart: always
|
|
volumes:
|
|
- /srv/data/registry/data:/var/lib/registry
|
|
- /srv/data/registry/auth:/auth
|
|
environment:
|
|
- REGISTRY_AUTH=htpasswd
|
|
- REGISTRY_AUTH_HTPASSWD_REALM="Registry Realm"
|
|
- REGISTRY_AUTH_HTPASSWD_PATH=/auth/htpasswd
|
|
networks:
|
|
- default
|
|
- saibelstefan-vm-01
|
|
|
|
networks:
|
|
saibelstefan-vm-01:
|
|
external: true
|