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