-
Notifications
You must be signed in to change notification settings - Fork 18
/
docker-compose.yml
83 lines (78 loc) · 1.76 KB
/
docker-compose.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
version: "3"
services:
# Plex
plex:
container_name: plex
image: ghcr.io/hotio/plex
ports:
- "32400:32400"
environment:
- PUID=<plex_user_id>
- PGID=<plex_group_id>
- UMASK=002
- TZ=Etc/UTC
- PLEX_CLAIM_TOKEN
- PLEX_ADVERTISE_URL
- PLEX_NO_AUTH_NETWORKS
- PLEX_BETA_INSTALL=false
- PLEX_PURGE_CODECS=false
volumes:
- /<host_folder_config>:/config
- /<host_folder_transcode>:/transcode
- /<host_folder_data>:/data:ro
# Radarr
radarr:
container_name: radarr
image: ghcr.io/hotio/radarr
ports:
- "7878:7878"
environment:
- PUID=<radarr_user_id>
- PGID=<radarr_group_id>
- UMASK=002
- TZ=Etc/UTC
volumes:
- /<host_folder_config>:/config
- /<host_folder_data>:/data
# Sonarr
sonarr:
container_name: sonarr
image: ghcr.io/hotio/sonarr
ports:
- "8989:8989"
environment:
- PUID=<sonarr_user_id>
- PGID=<sonarr_group_id>
- UMASK=002
- TZ=Etc/UTC
volumes:
- /<host_folder_config>:/config
- /<host_folder_data>:/data
# Prowlarr
prowlarr:
container_name: prowlarr
image: ghcr.io/hotio/prowlarr
ports:
- "9696:9696"
environment:
- PUID=<prowlarr_user_id>
- PGID=<prowlarr_group_id>
- UMASK=002
- TZ=Etc/UTC
volumes:
- /<host_folder_config>:/config
# qBittorrent
qbittorrent:
container_name: qbittorrent
image: ghcr.io/hotio/qbittorrent
ports:
- "8080:8080"
environment:
- PUID=<qbittorrent_user_id>
- PGID=<qbittorrent_group_id>
- UMASK=002
- TZ=Etc/UTC
- WEBUI_PORTS=8080/tcp,8080/udp
volumes:
- /<host_folder_config>:/config
- /<host_folder_data>:/data