-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
49 lines (46 loc) · 1.12 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.1'
services:
anystream:
container_name: anystream
image: ghcr.io/drewcarlson/anystream:main
restart: unless-stopped
ports:
- "8888:8888"
environment:
PORT: 8888
QBT_URL: http://qbittorrent:9090
QBT_USER: admin
QBT_PASSWORD: adminadmin
volumes:
- ./anystream-storage:/app/storage
- ./qbittorrent/content:/content
- ./qbittorrent/downloads:/downloads
links:
- qbittorrent
depends_on:
- qbittorrent
qbittorrent:
image: drewcarlson/docker-qbittorrentvpn
container_name: qbittorrent
restart: unless-stopped
cap_add:
- NET_ADMIN
sysctls:
- net.ipv6.conf.all.disable_ipv6=0
privileged: true
environment:
- VPN_ENABLED=yes
- LAN_NETWORK=192.168.1.0/24
- NAME_SERVERS=8.8.8.8,8.8.4.4
- WEBUI_PORT=9090
- INCOMING_PORT=8148
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
- UMASK_SET=022
ports:
- "9090:9090"
volumes:
- ./qbittorrent/config:/config
- ./qbittorrent/downloads:/downloads
- ./qbittorrent/content:/content