thedocks/docker-registry/docker-compose.yml

19 lines
460 B
YAML
Raw Normal View History

2022-11-08 15:25:44 +00:00
version: "3"
services:
docker-registry:
image: registry:2
container_name: docker-registry
ports:
- 5000:5000
restart: always
volumes:
- ./docker-registry:/var/lib/registry
docker-registry-ui:
image: konradkleine/docker-registry-frontend:v2
container_name: docker-registry-ui
ports:
2022-11-27 15:27:26 +00:00
- 8090:80
2022-11-08 15:25:44 +00:00
environment:
ENV_DOCKER_REGISTRY_HOST: docker-registry
ENV_DOCKER_REGISTRY_PORT: 5000