-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
97 lines (89 loc) · 2.16 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
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
version: "3"
services:
steamcache-dns:
restart: unless-stopped
image: steamcache/steamcache-dns:latest
environment:
- UPSTREAM_DNS: "1.1.1.1"
- STEAMCACHE_IP: "192.168.1.50"
- ORIGINCACHE_IP: "192.168.1.51"
- BLIZZARDCACHE_IP: "192.168.1.52"
- RIOTCACHE_IP: "192.168.1.53"
- FRONTIERCACHE_IP: "192.168.1.54"
- WINDOWSCACHE_IP: "192.168.1.55"
ports:
- "53:53/udp"
networks:
vpcbr:
ipv4_address: 192.168.1.50
sniproxy:
restart: unless-stopped
image: steamcache/sniproxy:latest
ports:
- "443:443"
steam-cache:
restart: unless-stopped
image: steamcache/generic:latest
volumes:
- cache/steam/data:/data/cache
- cache/steam/logs:/data/logs
ports:
- "80:80"
networks:
vpcbr:
ipv4_address: 192.168.1.50
origin-cache:
restart: unless-stopped
image: steamcache/generic:latest
volumes:
- cache/origin/data:/data/cache
- cache/origin/logs:/data/logs
ports:
- "80:80"
networks:
vpcbr:
ipv4_address: 192.168.1.51
blizzard-cache:
restart: unless-stopped
image: steamcache/generic:latest
volumes:
- cache/blizzard/data:/data/cache
- cache/blizzard/logs:/data/logs
ports:
- "80:80"
networks:
vpcbr:
ipv4_address: 192.168.1.52
riot-cache:
restart: unless-stopped
image: steamcache/generic:latest
volumes:
- cache/riot/data:/data/cache
- cache/riot/logs:/data/logs
ports:
- "80:80"
networks:
vpcbr:
ipv4_address: 192.168.1.53
fontier-cache:
restart: unless-stopped
image: steamcache/generic:latest
volumes:
- cache/fontier/data:/data/cache
- cache/fontier/logs:/data/logs
ports:
- "80:80"
networks:
vpcbr:
ipv4_address: 192.168.1.54
windows-cache:
restart: unless-stopped
image: steamcache/generic:latest
volumes:
- cache/windows/data:/data/cache
- cache/windows/logs:/data/logs
ports:
- "80:80"
networks:
vpcbr:
ipv4_address: 192.168.1.55