From d8045fd0195bbd2521a5014725664e57a4a92a96 Mon Sep 17 00:00:00 2001 From: cphipps Date: Tue, 20 May 2025 20:40:25 -0400 Subject: [PATCH] Add docker-compose.yml creation --- docker-compose.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..16072a68 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +services: + watchstate: + image: ghcr.io/arabcoders/watchstate:latest + # To change the user/group id associated with the tool change the following line. + user: "${UID:-0}:${GID:-0}" + container_name: watchstate + restart: unless-stopped + ports: + - "28080:8080" # The port which the webui will be available on. + volumes: + - /opt/stacks/watchstate/data:/config:rw # mount current directory to container /config directory. \ No newline at end of file