13 lines
511 B
YAML
13 lines
511 B
YAML
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: |