Setup
Run the container
WebUntisNotifier is published on DockerHub.
Using docker run
docker run -d \
-v /path/to/config.json:/config.json
-v /path/to/cache:/cache
maxbossing/webuntisnotifier:tag
Using docker compose (Recommended)
services:
notifier:
image: maxbossing/webuntisnotifier:tag
restart: unless-stopped
volumes:
- /path/to/config.json:/config.json
- notifier_cache:/cache
volumes:
notifier_cache: {}
Without a Container
It is highly advised to use the docker builds
- Compile the project using
./gradlew clean build
- Start the Notifier with
java -jar /build/libs/WebUntisNotifier.jar
No Comments