Files
opt/compose.bazarr.yaml

21 lines
497 B
YAML

services:
bazarr:
container_name: bazarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
image: linuxserver/bazarr:v1.5.3-ls327
ports:
- 16767:6767
restart: unless-stopped
volumes:
- /opt/bazarr/config:/config
- /media/neptune/Video/Movies:/movies
- /media/neptune/Video/Shows:/tv
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:6767/ping"]
interval: 30s
timeout: 10s
retries: 3