app-store/apps/bazarr/docker-compose.yml
renovate[bot] a38596ae4a
chore(deps): update lscr.io/linuxserver/bazarr docker tag to v1.2.1 (#428)
* chore(deps): update lscr.io/linuxserver/bazarr docker tag to v1.2.1

* 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-02 22:24:45 -04:00

28 lines
786 B
YAML

version: "3.7"
services:
bazarr:
image: lscr.io/linuxserver/bazarr:1.2.1
container_name: bazarr
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
dns:
- ${DNS_IP}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${APP_DATA_DIR}/data:/config
- ${ROOT_FOLDER_HOST}/media:/media
ports:
- ${APP_PORT}:6767
restart: unless-stopped
networks:
- tipi_main_network
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.bazarr.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.bazarr.entrypoints: websecure
traefik.http.routers.bazarr.service: bazarr
traefik.http.routers.bazarr.tls.certresolver: myresolver
traefik.http.services.bazarr.loadbalancer.server.port: 6767