23 lines
402 B
YAML
23 lines
402 B
YAML
services:
|
|
glance:
|
|
container_name: glance
|
|
image: glanceapp/glance
|
|
volumes:
|
|
- ./config:/app/config
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
ports:
|
|
- 1005:8080
|
|
restart: unless-stopped
|
|
networks:
|
|
- tunnel
|
|
- default
|
|
|
|
|
|
|
|
networks:
|
|
tunnel:
|
|
external: true
|
|
default:
|