-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-exemplo.yml
103 lines (95 loc) · 2.01 KB
/
docker-compose-exemplo.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
version: '3.1'
name: geek
services:
plex:
container_name: plex-server
hostname: jediflix
# image: plexinc/pms-docker
image: lscr.io/linuxserver/plex:latest
restart: always
ports:
- 32400:32400/tcp
- 3005:3005/tcp
- 8324:8324/tcp
- 32469:32469/tcp
- 1900:1900/udp
- 32410:32410/udp
- 32412:32412/udp
- 32413:32413/udp
- 32414:32414/udp
environment:
- TZ=America/Sao_Paulo
- PLEX_CLAIM=claim-xWYAYghHF_fzPJRhBTgt
- ADVERTISE_IP=http://jediflix.geek.net:32400/
volumes:
- ./plex/transcode:/transcode
- ./plex/database:/config
- ./plex/media:/data
networks:
- geek.net
deploy:
resources:
limits:
cpus: '3.00'
memory: 512M
reservations:
cpus: '1.00'
memory: 128M
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
restart: always
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=America/Sao_Paulo
- WEBUI_PORT=8182
hostname: qbittorrent
volumes:
- ./qbittorrent/config:/config
- ./plex/media:/downloads
ports:
- 8182:8182
- 6881:6881/tcp
- 6881:6881/udp
depends_on:
- plex
networks:
- geek.net
deploy:
resources:
limits:
cpus: '0.05'
memory: 256M
reservations:
cpus: '0.01'
memory: 64M
tautulli:
image: lscr.io/linuxserver/tautulli:latest
container_name: tautulli
restart: always
environment:
- PUID=1000
- PGID=1000
- TZ=America/Sao_Paulo
hostname: tautulli
volumes:
- ./tautulli/config:/config
ports:
- 8181:8181
depends_on:
- plex
networks:
- geek.net
deploy:
resources:
limits:
cpus: '0.10'
memory: 128M
reservations:
cpus: '0.05'
memory: 64M
networks:
geek.net:
name: geek.net
driver: bridge