forked from LimeDrive/ygg-rss-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
49 lines (45 loc) · 1.11 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
version: "3.8"
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
PUID: 1000
PGID: 1000
TZ: Europe/Paris
WEBUI_PORT: 8080
volumes:
- ./config:/config
- ./downloads:/downloads
ports:
- 6881:6881
- 6881:6881/udp
- 8080:8080
restart: unless-stopped
ygg-rss-proxy:
image: ghcr.io/limedrive/ygg-rss-proxy:latest
build: .
container_name: ygg-rss-proxy
expose:
- 8080
environment:
TZ: Europe/Paris
YGG_USER: 'StOpCouDflaE'
YGG_PASS: 'BaDaSS'
FLARESOLVERR_HOST: flaresolverr
LOG_LEVEL: INFO
volumes:
- ./config:/app/config
restart: unless-stopped
depends_on:
- flaresolverr
flaresolverr:
image: ghcr.io/svaningelgem/flaresolverr:latest
container_name: flaresolverr
environment:
TZ: Europe/Paris
LOG_LEVEL: info
CAPTCHA_SOLVER: none
expose:
- 8191
restart: unless-stopped