Skip to main content

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

  1. Compile the project using ./gradlew clean build
  2. Start the Notifier with java -jar /build/libs/WebUntisNotifier.jar