app-store/apps/wizarr/docker-compose.yml
renovate[bot] 9a0dd83beb
chore(deps): update ghcr.io/wizarrrr/wizarr docker tag to v2.2.0 (#512)
* chore(deps): update ghcr.io/wizarrrr/wizarr docker tag to v2.2.0

* Update app version

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
2023-05-14 14:31:00 -04:00

26 lines
802 B
YAML

version: "3.8"
services:
wizarr:
container_name: wizarr
image: ghcr.io/wizarrrr/wizarr:2.2.0
ports:
- ${APP_PORT}:5690
volumes:
- ${APP_DATA_DIR}/data/database:/data/database
environment:
- APP_URL=${APP_PROTOCOL:-http}://${APP_DOMAIN}
- DISABLE_BUILTIN_AUTH=false #Set to true ONLY if you are using another auth provider (Authelia, Authentik, etc)
- TZ=${TZ}
networks:
- tipi_main_network
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.wizarr.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.wizarr.entrypoints: websecure
traefik.http.routers.wizarr.service: wizarr
traefik.http.routers.wizarr.tls.certresolver: myresolver
traefik.http.services.wizarr.loadbalancer.server.port: 5690