compose yaml

master
bvn13 2023-06-08 00:58:31 +03:00
parent a8b43394c2
commit 4967258b2e
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
version: '3.7'
services:
registry:
restart: always
image: registry:2.7
ports:
- 5001:5000
volumes:
- /mnt/d/registry-data:/var/lib/registry
- ./registry/config.yaml:/etc/docker/registry/config.yaml
ui:
image: joxit/docker-registry-ui:latest
ports:
- 9001:80
environment:
- REGISTRY_TITLE=bvn13 Docker Registry
- REGISTRY_URL=http://localhost:5001
- SINGLE_REGISTRY=true
depends_on:
- registry