From 5f5fe9b6ea35739a5bf966ac3dc767c3915b3926 Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Sun, 21 May 2023 14:19:22 +0200 Subject: [PATCH] Add glances compose file --- glances/docker-compose.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 glances/docker-compose.yml diff --git a/glances/docker-compose.yml b/glances/docker-compose.yml new file mode 100644 index 0000000..c14cebc --- /dev/null +++ b/glances/docker-compose.yml @@ -0,0 +1,16 @@ +services: + glances: + image: docker.io/nicolargo/glances + container_name: glances + volumes: + # Config + - $DOCKERDIR/glances:/glances/conf + # Other + - /var/run/docker.sock:/var/run/docker.sock:ro + environment: + TZ: $TZ + GLANCES_OPT: '-w' + ports: + - 61208-61209:61208-61209 + pid: host + restart: unless-stopped \ No newline at end of file