12 lines
340 B
YAML
12 lines
340 B
YAML
services:
|
|
glance:
|
|
container_name: glance
|
|
image: glanceapp/glance
|
|
volumes:
|
|
- ./config:/app/config
|
|
- ./assets:/app/assets
|
|
# Optionally, also mount docker socket if you want to use the docker containers widget
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
ports:
|
|
- 3050:8080
|
|
env_file: .env
|