docker-projects/glances/compose.yml
2024-08-01 16:47:41 +02:00

30 lines
821 B
YAML

# dummyhttps://nicolargo.github.io/glances/
# a cross-platform system monitoring tool written in Python
# http://localhost:61208/
name: glances
services:
glances:
container_name: glances
image: nicolargo/glances:latest-full
#restart: always
pid: "host"
privileged: true
network_mode: "host"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
#- "/run/user/1000/podman/podman.sock:/run/user/1000/podman/podman.sock:ro"
- ./glances.conf:/etc/glances/glances.conf
environment:
- TZ=Europe/Vienna
- GLANCES_OPT=-w
# Uncomment for GPU compatibility (Nvidia) inside the container
# deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# count: 1
# capabilities: [gpu]