forked from lancachenet/docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
127 lines (127 loc) · 3.1 KB
/
docker-compose.yml
File metadata and controls
127 lines (127 loc) · 3.1 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
version: '2'
services:
#DNS
dns:
image: lancachenet/lancache-dns:latest
env_file: .env
restart: unless-stopped
networks:
net:
ipv4_address: ${DNS_BIND_IP}
ports:
- ${DNS_BIND_IP}:53:53/udp
## Folgende alle Caches
## STEAMCACHE
steamcache:
image: lancachenet/monolithic:latest
env_file: .env
restart: unless-stopped
networks:
net:
ipv4_address: ${STEAMCACHE_IP}
ports:
- ${STEAMCACHE_IP}:80:80/tcp
- ${STEAMCACHE_IP}:443:443/tcp
volumes:
- ${CACHE_ROOT}/steam/cache:/data/cache
- ${CACHE_ROOT}/steam/logs:/data/logs
## ORIGINCACHE
origincache:
image: lancachenet/monolithic:latest
env_file: .env
restart: unless-stopped
networks:
net:
ipv4_address: ${ORIGINCACHE_IP}
ports:
- ${ORIGINCACHE_IP}:80:80/tcp
- ${ORIGINCACHE_IP}:443:443/tcp
volumes:
- ${CACHE_ROOT}/origin/cache:/data/cache
- ${CACHE_ROOT}/origin/logs:/data/logs
## BLIZZARDCACHE
blizzardcache:
image: lancachenet/monolithic:latest
env_file: .env
restart: unless-stopped
networks:
net:
ipv4_address: ${BLIZZARDCACHE_IP}
ports:
- ${BLIZZARDCACHE_IP}:80:80/tcp
- ${BLIZZARDCACHE_IP}:443:443/tcp
volumes:
- ${CACHE_ROOT}/blizzard/cache:/data/cache
- ${CACHE_ROOT}/blizzard/logs:/data/logs
## EPICGAMESCACHE
epiccache:
image: lancachenet/monolithic:latest
env_file: .env
restart: unless-stopped
networks:
net:
ipv4_address: ${EPICGAMESCACHE_IP}
ports:
- ${EPICGAMESCACHE_IP}:80:80/tcp
- ${EPICGAMESCACHE_IP}:443:443/tcp
volumes:
- ${CACHE_ROOT}/epic/cache:/data/cache
- ${CACHE_ROOT}/epic/logs:/data/logs
## ROCKSTARCACHE
rockstarcache:
image: lancachenet/monolithic:latest
env_file: .env
restart: unless-stopped
networks:
net:
ipv4_address: ${ROCKSTARCACHE_IP}
ports:
- ${ROCKSTARCACHE_IP}:80:80/tcp
- ${ROCKSTARCACHE_IP}:443:443/tcp
volumes:
- ${CACHE_ROOT}/rockstar/cache:/data/cache
- ${CACHE_ROOT}/rockstarsteam/logs:/data/logs
## Proxys now...
## Steam Proxy
steamproxy:
image: darthblair/sniproxy
env_file: .env
restart: unless-stopped
network_mode: service:steamcache
## Origin Proxy
originproxy:
image: darthblair/sniproxy
env_file: .env
restart: unless-stopped
network_mode: service:origincache
## Blizzard Proxy
blizzardroxy:
image: darthblair/sniproxy
env_file: .env
restart: unless-stopped
network_mode: service:blizzardcache
## Epic Proxy
epicproxy:
image: darthblair/sniproxy
env_file: .env
restart: unless-stopped
network_mode: service:epiccache
## Rockstar Proxy
rockstarproxy:
image: darthblair/sniproxy
env_file: .env
restart: unless-stopped
network_mode: service:rockstarcache
## Network COnfiguration
## IMPORTANT !!!
## Change parent: <IF>
## Change subnet and gateway
networks:
net:
driver: macvlan
driver_opts:
parent: enp3s0
ipam:
config:
- subnet: 192.168.23.0/24
gateway: 192.168.23.1