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