mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-20 15:52:16 +03:00
18 lines
375 B
YAML
18 lines
375 B
YAML
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"
|