-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
57 lines (54 loc) · 1.17 KB
/
docker-compose.yml
File metadata and controls
57 lines (54 loc) · 1.17 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
version: '3.6'
services:
jackett:
image: linuxserver/jackett
environment:
- PUID=99
- PGID=100
- TZ=Europe/Bucharest
volumes:
- './.docker/jackett:/config'
ports:
- 9117:9117
restart: on-failure:5
sonarr:
image: linuxserver/sonarr
container_name: sonarr
volumes:
- ./.docker/sonarr:/config
- ./.docker/downloads:/downloads
- ./.docker/seriale:/tv
# - /etc/localtime:/etc/localtime:ro
ports:
- 8989:8989
environment:
- PUID=99
- PGID=100
- TZ=Europe/Bucharest
restart: unless-stopped
qbittorrent:
image: linuxserver/qbittorrent
container_name: qbittorrent
volumes:
- ./.docker/qbittorrent:/config
- ./.docker/downloads:/downloads
- ./.docker/seriale:/tv-shows
- ./.docker/filme:/movies
ports:
- 6881:6881
- 6881:6881/udp
- 8080:8080
environment:
- PUID=99
- PGID=100
- UMASK_SET=022
- TZ=Europe/Bucharest
- WEBUI_PORT=8080
restart: unless-stopped
moverr:
build: ./
environment:
PYTHONUNBUFFERED: 'true'
volumes:
- ./:/app
restart: on-failure