16 lines
393 B
YAML
16 lines
393 B
YAML
|
version: '3.7'
|
||
|
services:
|
||
|
glances:
|
||
|
image: nicolargo/glances:latest
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 61208:61208
|
||
|
# - "61209:61209"
|
||
|
environment:
|
||
|
# - GLANCES_OPT="-w"
|
||
|
GLANCES_OPT: "-w"
|
||
|
volumes:
|
||
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||
|
- /srv/dev-disk-by-uuid-cda15581-b397-4ab7-8698-acea81fc1e9c/glances:/config/glances.conf
|
||
|
pid: "host"
|