mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-27 07:29:54 +03:00
20 lines
No EOL
492 B
YAML
20 lines
No EOL
492 B
YAML
version: '2.0'
|
|
services:
|
|
registry:
|
|
image: registry:2.7
|
|
ports:
|
|
- 5000:5000
|
|
volumes:
|
|
- ./registry-data:/var/lib/registry
|
|
- ./registry-config/credentials.yml:/etc/docker/registry/config.yml
|
|
- ./registry-config/htpasswd:/etc/docker/registry/htpasswd
|
|
|
|
ui:
|
|
image: joxit/docker-registry-ui:static
|
|
ports:
|
|
- 80:80
|
|
environment:
|
|
- REGISTRY_TITLE=My Private Docker Registry
|
|
- URL=http://localhost:5000
|
|
depends_on:
|
|
- registry |