Add Docker Compose configuration for Watchstate service

This commit is contained in:
Nikholas Pcenicni
2026-02-12 12:31:27 -05:00
parent 1d40a0a7ec
commit 797aa2e514

View File

@@ -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: