Hi,
I'm running glances in a container with the following docker compose yaml.
monitoring:
image: nicolargo/glances:latest-alpine
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- "GLANCES_OPT=-w"
ports:
- "61208:61208"
I'd like glances to monitor and show stats for the other docker containers I am running but it only does that if I install glances on my host with pip install glances. Is there a way for the docker container glances to monitor the other docker container?
Thanks,
Matt