app-store/apps/bazarr/docker-compose.yml

28 lines
786 B
YAML
Raw Normal View History

2022-11-03 12:05:27 +00:00
version: "3.7"
services:
bazarr:
image: lscr.io/linuxserver/bazarr:1.1.2
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
2022-11-11 19:33:58 +00:00
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