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