This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
distribution/docker-compose.yml

30 lines
446 B
YAML
Raw Normal View History

2020-05-11 15:05:39 +00:00
---
version: "3.7"
services:
registry:
image: "registry:2"
2020-05-11 16:00:40 +00:00
networks:
- registry-ui-net
2020-05-11 15:05:39 +00:00
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 16:00:40 +00:00
networks:
- registry-ui-net
depends_on:
- registry
networks:
registry-ui-net:
2020-05-11 15:05:39 +00:00
volumes:
registry: