app-store/apps/wizarr/docker-compose.yml
Ashley fdf7f057cf Update Wizarr version to 3.4.2, use latest image in docker-compose.yml, and add a new logo file
- Version in `config.json` was updated from 2.2.0 to 3.4.2 to reflect the new Wizarr version.
- In `docker-compose.yml`, the image tag was changed from `2.2.0` to `latest` to use the latest Wizarr image.
- The old logo file `logo.jpg` was deleted, and a new logo file `logo.png` was added.
2023-10-24 21:34:10 +01:00

40 lines
1.5 KiB
YAML

version: "3.8"
services:
wizarr:
container_name: wizarr
image: ghcr.io/wizarrrr/wizarr:latest
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