Docker setup
Run CrossWatch
Docker (quick run)
docker run -d \
--name crosswatch \
-p 8787:8787 \
-v /path/to/config:/config \
-e TZ=Europe/Amsterdam \
ghcr.io/cenodude/crosswatch:latestDocker Compose (cleaner)
services:
crosswatch:
image: ghcr.io/cenodude/crosswatch:latest
container_name: crosswatch
ports:
- "8787:8787"
environment:
- TZ=Europe/Amsterdam
volumes:
- /path/to/config:/config
restart: unless-stoppedLast updated
Was this helpful?
