mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
17 lines
350 B
YAML
17 lines
350 B
YAML
services:
|
|
glance:
|
|
image: ${GLANCE_IMAGE:-glanceapp/glance:latest}
|
|
restart: ${GLANCE_RESTART:-unless-stopped}
|
|
volumes:
|
|
- ${VOL_PATH:-/data}/glance/config:/app/config
|
|
environment:
|
|
- TZ=${TZ:-America/Vancouver}
|
|
ports:
|
|
- ${GLANCE_PORT:-8080}:8080
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|