summaryrefslogtreecommitdiffstats
path: root/docker-compose/docker-compose.yml
blob: de5efee7d2a1e2500cb739678822ce781070c1fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: '3.7'
services:
  glances:
    build:
      context: ./
      dockerfile: Dockerfile
    restart: always
    ports:
      - "61208:61208"
      # - "61209:61209"
    environment:
      # - GLANCES_OPT="-w"
      GLANCES_OPT: "-w"
    volumes:
      - "/var/run/docker.sock:/var/run/docker.sock:ro"
      - "./glances.conf:/glances/conf/glances.conf"
    pid: "host"