Glances

System resources monitoring.

  • Category: DevOps
  • Last updated: Tue, Mar 18, 2025

Example docker-compose.yml

services:
  glances:
    container_name: glances
    image: nicolargo/glances:latest-full
    restart: unless-stopped
    environment:
      TZ: Europe/Berlin
      GLANCES_OPT: "-w"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock:ro
    pid: "host"