-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
70 lines (66 loc) · 1.46 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
version: '3.3'
services:
deluged:
build:
context: ./deluged
dockerfile: Dockerfile
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- UMASK_SET=022
cap_add:
- NET_ADMIN
networks:
- deluged_net
devices:
- "/dev/net/tun"
dns:
- 84.200.69.80
- 84.200.70.40
volumes:
- ./downloads:/root/Downloads
- ./data/root/files/Deluge:/completed #has to be set in deluge client to /completed
- ./deluged_config:/config
- ./openvpn:/etc/openvpn
restart: always
owncloud:
build:
context: ./owncloud
dockerfile: Dockerfile
volumes:
- ./apps:/var/www/html/apps
- ./owncloud_config:/var/www/html/config
- ./data:/var/www/html/data
networks:
- owncloud_net
restart: always
owncloud_proxy:
image: nginx:1.19
ports:
- '443:443'
- '80:80'
depends_on:
- owncloud
restart: always
networks:
- owncloud_net
volumes:
- ./owncloud_proxy/nginx.conf:/etc/nginx/nginx.conf
- ./certs:/etc/nginx/certs
deluged_proxy:
image: nginx:1.19
ports:
- '8112:8112'
depends_on:
- deluged
networks:
- deluged_net
volumes:
- ./deluged_proxy/nginx.conf:/etc/nginx/nginx.conf
restart: always
networks:
deluged_net:
driver: bridge
owncloud_net:
driver: bridge