16 lines
352 B
YAML
16 lines
352 B
YAML
---
|
|
services:
|
|
bazarr:
|
|
image: lscr.io/linuxserver/bazarr:latest
|
|
container_name: bazarr
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
volumes:
|
|
- /path/to/bazarr/config:/config
|
|
- /path/to/movies:/movies #optional
|
|
- /path/to/tv:/tv #optional
|
|
ports:
|
|
- 6767:6767
|
|
restart: unless-stopped |