13 lines
245 B
YAML
13 lines
245 B
YAML
version: '3'
|
|
|
|
services:
|
|
monitoring:
|
|
image: nicolargo/glances:latest
|
|
restart: always
|
|
pid: host
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
environment:
|
|
- "GLANCES_OPT=-w"
|
|
ports:
|
|
- "61208:61208" |