app-store/apps/wizarr/docker-compose.yml
renovate[bot] 49463d6e6f
chore(deps): update ghcr.io/wizarrrr/wizarr docker tag to v4 (#3331)
* chore(deps): update ghcr.io/wizarrrr/wizarr docker tag to v4

* Update app version [ready]

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tipi CI <ci@runtipi.io>
2024-05-06 20:20:56 +02:00

38 lines
1.5 KiB
YAML

version: "3.8"
services:
wizarr:
container_name: wizarr
image: ghcr.io/wizarrrr/wizarr:4.0.0
ports:
- ${APP_PORT}:5690
volumes:
- ${APP_DATA_DIR}/data/database:/data/database
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.wizarr-web-redirect.redirectscheme.scheme: https
traefik.http.services.wizarr.loadbalancer.server.port: 5690
# Web
traefik.http.routers.wizarr-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.wizarr-insecure.entrypoints: web
traefik.http.routers.wizarr-insecure.service: wizarr
traefik.http.routers.wizarr-insecure.middlewares: wizarr-web-redirect
# Websecure
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
# Local domain
traefik.http.routers.wizarr-local-insecure.rule: Host(`wizarr.${LOCAL_DOMAIN}`)
traefik.http.routers.wizarr-local-insecure.entrypoints: web
traefik.http.routers.wizarr-local-insecure.service: wizarr
traefik.http.routers.wizarr-local-insecure.middlewares: wizarr-web-redirect
# Local domain secure
traefik.http.routers.wizarr-local.rule: Host(`wizarr.${LOCAL_DOMAIN}`)
traefik.http.routers.wizarr-local.entrypoints: websecure
traefik.http.routers.wizarr-local.service: wizarr
traefik.http.routers.wizarr-local.tls: true