From 797aa2e514d0151d0fcdac8b89f0ddac2501b028 Mon Sep 17 00:00:00 2001 From: Nikholas Pcenicni <82239765+nikpcenicni@users.noreply.github.com> Date: Thu, 12 Feb 2026 12:31:27 -0500 Subject: [PATCH] Add Docker Compose configuration for Watchstate service --- komodo/automate/watchstate/compose.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 komodo/automate/watchstate/compose.yaml diff --git a/komodo/automate/watchstate/compose.yaml b/komodo/automate/watchstate/compose.yaml new file mode 100644 index 0000000..afeaa60 --- /dev/null +++ b/komodo/automate/watchstate/compose.yaml @@ -0,0 +1,13 @@ +services: + watchstate: + image: ghcr.io/arabcoders/watchstate:latest + # To change the user/group id associated with the tool change the following line. + user: "${UID:-1000}:${UID:-1000}" + container_name: watchstate + restart: unless-stopped + ports: + - "8080:8080" # The port which the watchstate will listen on. + volumes: + - watchstate:/config:rw # mount ./data in current directory to container /config directory. +volumes: + watchstate: \ No newline at end of file