26 lines
645 B
YAML
26 lines
645 B
YAML
services:
|
|
dashy:
|
|
image: lissy93/dashy:latest
|
|
container_name: dashy
|
|
ports:
|
|
- "8084:8080"
|
|
volumes:
|
|
- ./conf.yml:/app/user-data/conf.yml
|
|
environment:
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|
|
glances:
|
|
image: nicolargo/glances:latest
|
|
container_name: glances
|
|
restart: unless-stopped
|
|
pid: host
|
|
ports:
|
|
- "61208:61208"
|
|
environment:
|
|
- GLANCES_OPT=-w
|
|
- TZ=Asia/Tokyo
|
|
- GLANCES_OPT=-C /config/glances.conf -w
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- /mnt/storage:/mnt/storage:ro
|
|
- ./glances.conf:/config/glances.conf:ro |