17 lines
356 B
YAML
17 lines
356 B
YAML
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
bazarr:
|
||
|
image: ghcr.io/linuxserver/bazarr
|
||
|
container_name: bazarr
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=America/New_York
|
||
|
volumes:
|
||
|
- /kubernetes-volumes/bazaar/config:/config
|
||
|
- /mnt/plex/Content/TV\ Anime/:/tv #optional
|
||
|
ports:
|
||
|
- 6767:6767
|
||
|
restart: unless-stopped
|