This repository has been archived on 2025-07-17. You can view files and clone it, but cannot push or open issues or pull requests.
Files
archived-docker-compose/glances/docker-compose.yml
2025-06-08 13:50:37 +05:30

16 lines
346 B
YAML

version: "3.8"
services:
glances:
image: "nicolargo/glances:4.3.0.8"
container_name: "glances"
hostname: "${HOSTNAME}"
pid: "host"
environment:
- "GLANCES_OPT=-w"
ports:
- "${PORT}:61208"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
- "/:/mnt/root"
restart: "unless-stopped"