docker-compose.yml
· 240 B · YAML
Raw
services:
glance:
image: glanceapp/glance
volumes:
- /glance/glance.yml:/app/glance.yml
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 8080:8080
restart: unless-stopped
| 1 | services: |
| 2 | glance: |
| 3 | image: glanceapp/glance |
| 4 | volumes: |
| 5 | - /glance/glance.yml:/app/glance.yml |
| 6 | - /etc/timezone:/etc/timezone:ro |
| 7 | - /etc/localtime:/etc/localtime:ro |
| 8 | ports: |
| 9 | - 8080:8080 |
| 10 | restart: unless-stopped |