-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
47 lines (41 loc) · 1.25 KB
/
compose.yaml
File metadata and controls
47 lines (41 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: bazarr
x-daemonless:
title: "Bazarr"
icon: ":material-subtitles:"
category: "Media Management"
description: "Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you."
upstream_url: "https://github.com/morpheus65535/bazarr"
web_url: "https://www.bazarr.media/"
freshports_url: "https://www.freshports.org/net-p2p/bazarr/"
user: "bsd"
appjail: true
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
volumes:
/config: "Configuration directory"
/movies:
desc: "Movie library (should match Radarr)"
optional: true
/tv:
desc: "TV library (should match Sonarr)"
optional: true
ports:
6767: "Web UI"
services:
bazarr:
image: ghcr.io/daemonless/bazarr:latest
container_name: bazarr
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/bazarr:/config
- /path/to/movies:/movies
- /path/to/tv:/tv
ports:
- 6767:6767