This repository has been archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.yml
89 lines (87 loc) · 1.95 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
84
85
86
87
88
89
version: "3.6"
services:
portainer:
image: "portainer/portainer"
container_name: "portainer"
restart: always
command: -H unix:///var/run/docker.sock
ports:
- "9000:9000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /:/Data
- /:/shared
environment:
- TZ=Europe/London
qbittorrent:
image: "linuxserver/qbittorrent"
container_name: "qbittorrent"
volumes:
- ~/Documents/Docker/qbittorrent:/config
- /:/Data
ports:
- "8086:8086"
- "6881:6881"
- "6881:6881/udp"
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- UMASK_SET=002
- WEBUI_PORT=8086
sabnzbd:
image: "linuxserver/sabnzbd"
container_name: "sabnzbd"
volumes:
- ~/Documents/Docker/sabnzbd:/config
- /:/Data
ports:
- "8888:8080"
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
radarr:
image: "linuxserver/radarr"
container_name: "radarr"
volumes:
- ~/Documents/Docker/radarr:/config
- /:/Data
- "/etc/localtime:/etc/localtime:ro"
ports:
- "7878:7878"
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
sonarr:
image: "linuxserver/sonarr"
container_name: "sonarr"
volumes:
- ~/Documents/Docker/sonarr:/config
- /:/Data
- "/etc/localtime:/etc/localtime:ro"
ports:
- "8989:8989"
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
jackett:
image: "linuxserver/jackett"
container_name: "jackett"
volumes:
- ~/Documents/Docker/jackett:/config
- /:/Data
- "/etc/localtime:/etc/localtime:ro"
ports:
- "9117:9117"
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London