diff --git a/database/README.md b/database/README.md new file mode 100644 index 0000000..70ee0aa --- /dev/null +++ b/database/README.md @@ -0,0 +1,5 @@ +# wizarr + +wizarr ist ein Einladungstool für Jellyfin +https://github.com/wizarrrr/wizarr +https://hub.docker.com/r/wizarrrr/wizarr \ No newline at end of file diff --git a/docker-compose.wizarr.yml b/docker-compose.wizarr.yml new file mode 100644 index 0000000..e141372 --- /dev/null +++ b/docker-compose.wizarr.yml @@ -0,0 +1,45 @@ +# Docker Compose File für Wizarr +# docker-compose -f docker-compose.wizarr.yml up -d +version: '3.5' + +networks: + wizarr: + traefik: + external: true + +services: + wizarr: + image: ghcr.io/wizarrrr/wizarr:4.1.1 + container_name: wizarr + restart: always + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + ports: + - "5690:5690" + networks: +# - shaarli + - traefik_proxy + volumes: + - "/docker/wizarr/database:/data/database" + logging: + driver: "gelf" + options: + gelf-address: "udp://192.168.1.250:12201" + labels: +# - "traefik.docker.network=traefik" + - "traefik.enable=false" +# - "traefik.backend=shaarli" +# - "traefik.passHostHeader=true" +# - 'traefik.frontend.rule=Host:bm.czechman.dynvpn.de;PathPrefixStrip: /' +# - "traefik.frontend.auth.basic.users=McSeeno:$$2y$$13$$maYBYazCRDGmcKdSy/QA0eWBUEIpobxcUy.z68fnifcpoCqWm18wW" +# - "traefik.protocol=http" +# - "traefik.port=80" +# - "traefik.frontend.auth.forward.trustForwardHeader=true" +# - "traefik.frontend.auth.forward.tls.insecureSkipVerify=true" +# - "traefik.http.routers.shaarli.entypoint=web" +# - "traefik.http.routers.shaarli.rule=Host(`flix.czechman.dynvpn.de`)" +# - "traefik.http.routers.shaarli.entrypoints=websecure" +# - "traefik.http.routers.shaarli.tls.certresolver=myresolver" +