-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
149 lines (138 loc) · 3.34 KB
/
docker-compose.yml
File metadata and controls
149 lines (138 loc) · 3.34 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
name: media-stack
services:
## Default credentials of qBittorrent - Username: admin password: adminadmin ##
## Change password after install from UI --> Tools --> Options --> WebUI ##
flaresolverr:
# DockerHub mirror flaresolverr/flaresolverr:latest
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
environment:
- LOG_LEVEL=${LOG_LEVEL:-info}
- LOG_HTML=${LOG_HTML:-false}
- CAPTCHA_SOLVER=${CAPTCHA_SOLVER:-none}
- TZ=Europe/London
ports:
- "${PORT:-8191}:8191"
restart: unless-stopped
networks:
- mynetwork
qbittorrent:
container_name: qbittorrent
image: lscr.io/linuxserver/qbittorrent:latest
networks:
- mynetwork
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Ljubljana
- WEBUI_PORT=5080
volumes:
- qbittorrent-config:/config
- windows-library:/downloads
ports:
- 5080:5080
- 6881:6881
- 6881:6881/udp
restart: "unless-stopped"
radarr:
container_name: radarr
image: lscr.io/linuxserver/radarr:latest
networks:
- mynetwork
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Ljubljana
ports:
- 7878:7878
volumes:
- radarr-config:/config
- windows-library:/downloads
restart: "unless-stopped"
sonarr:
image: linuxserver/sonarr:latest
container_name: sonarr
networks:
- mynetwork
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Ljubljana
volumes:
- sonarr-config:/config
- windows-library:/downloads
ports:
- 8989:8989
restart: unless-stopped
prowlarr:
container_name: prowlarr
image: linuxserver/prowlarr:latest
networks:
- mynetwork
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Ljubljana
volumes:
- prowlarr-config:/config
ports:
- 9696:9696
restart: unless-stopped
jellyseerr:
image: ghcr.io/seerr-team/seerr:latest
init: true
container_name: jellyseerr
user: "1000:1000"
networks:
- mynetwork
environment:
- PUID=1000
- PGID=1000
- LOG_LEVEL=debug
- TZ=Europe/Ljubljana
volumes:
- jellyseerr-config:/app/config
ports:
- 5055:5055
restart: unless-stopped
healthcheck:
test: wget --no-verbose --tries=1 --spider http://127.0.0.1:5055/api/v1/status || exit 1
start_period: 20s
timeout: 3s
interval: 15s
retries: 3
jellyfin:
image: linuxserver/jellyfin:10.11.8
container_name: jellyfin
networks:
- mynetwork
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Ljubljana
volumes:
- jellyfin-config:/config
- windows-torrent-downloads:/torrent-downloads
- windows-library:/library
# devices:
# - /dev/videoN:/dev/videoN # Mount GPU device
ports:
- 0.0.0.0:8096:8096
- 0.0.0.0:7359:7359/udp
- 0.0.0.0:8920:8920
restart: unless-stopped
#https://github.com/serzhshakur/sanitarr
volumes:
radarr-config:
sonarr-config:
prowlarr-config:
jellyfin-config:
qbittorrent-config:
jellyseerr-config:
windows-torrent-downloads:
external: true
windows-library:
external: true
networks:
mynetwork:
external: true