distribution/docker-compose.yml

21 lines
307 B
YAML
Raw Normal View History

2020-05-11 15:05:39 +00:00
---
version: "3.7"
services:
registry:
image: "registry:2"
ports:
- "5000:5000"
volumes:
- "registry:/var/lib/registry"
2020-05-11 15:07:27 +00:00
registry-ui:
2020-05-11 15:25:43 +00:00
image: "joxit/docker-registry-ui:static"
2020-05-11 15:05:39 +00:00
ports:
- "80:80"
environment:
2020-05-11 15:25:43 +00:00
- URL=http://registry:5000
2020-05-11 15:05:39 +00:00
volumes:
registry: