From 9605a025550065c3a551b07c387b341bfb474622 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 2 Nov 2025 14:56:08 +0100 Subject: [PATCH] =?UTF-8?q?netalertx/docker-compose.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- netalertx/docker-compose.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 netalertx/docker-compose.yml diff --git a/netalertx/docker-compose.yml b/netalertx/docker-compose.yml new file mode 100644 index 0000000..342d3b3 --- /dev/null +++ b/netalertx/docker-compose.yml @@ -0,0 +1,19 @@ +services: + netalertx: + container_name: netalertx + # use the below line if you want to test the latest dev image + # image: "jokobsk/netalertx-dev:latest" + image: "jokobsk/netalertx:latest" + network_mode: "host" + restart: unless-stopped + volumes: + - config:/app/config + - db:/app/db + - log:/app/front/log + environment: + - TZ=Europe/Berlin + - PORT=20211 +volumes: + config: + db: + log: \ No newline at end of file