jdreinhardt/glances

By jdreinhardt

Updated about 2 years ago

Unofficial multi-arch builds for Glances

Image
3

1M+

Source repository: https://github.com/nicolargo/glances

Glances an Eye on your system. A top/htop alternative.

Tags

  • latest is built from the latest updates on the develop branch from the source project
  • release is built from the latest release version. Additional tags are generated for each specific version

Quickstart

docker run -d -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host -p 61208:61208 -e GLANCES_OPT="-w" jdreinhardt/glances:latest

docker-compose.yml

version: '3'

services:
  glances:
    image: jdreinhardt/glances:latest
    volumes:
      - ./data:/etc/glances
      - /var/run/docker.sock:/var/run/docker.sock:ro
    environment:
      - GLANCES_OPT=-w
    ports:
      - 61208:61208
    pid: host
    restart: always

The Glances webui should be available at http://localhost:61208

Additional configurations may be placed in ./data/glances.conf

Docker Pull Command

docker pull jdreinhardt/glances