16 lines
451 B
YAML
16 lines
451 B
YAML
services:
|
|
registry-ui:
|
|
image: 'quiq/registry-ui:latest'
|
|
network_mode: "host" #use hosts file instead DNS
|
|
ports:
|
|
- '8000:8000'
|
|
restart: always
|
|
container_name: registry-ui
|
|
environment:
|
|
TZ: Europe/Zurich
|
|
volumes:
|
|
- /home/docker/certs/gmotechCA.crt:/etc/ssl/certs/ca-certificates.crt
|
|
- /home/docker/registry-ui/conf/config.yml:/opt/config.yml:ro
|
|
- /home/docker/registry-ui/data:/opt/data
|
|
|