mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- Introduced Docker Compose setup for Bazarr service, including environment variables and volume configuration. - Added logo for Bazarr. - Created template.toml for Bazarr with default variables for configuration.
18 lines
312 B
YAML
18 lines
312 B
YAML
version: "3.8"
|
|
services:
|
|
bazarr:
|
|
image: lscr.io/linuxserver/bazarr:1.5.1
|
|
restart: unless-stopped
|
|
ports:
|
|
- 6767
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=UTC
|
|
volumes:
|
|
- config:/config
|
|
- ${MOVIES_PATH}:/movies
|
|
- ${TV_PATH}:/tv
|
|
|
|
volumes:
|
|
config: {} |