-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
148 lines (139 loc) · 3.1 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
version: "3"
services:
# Web Infrastructure
download-server:
image: thetestgame/toontown-classic-dl:latest
networks:
- default
- toontown
ports:
- "8080:80/tcp"
restart: unless-stopped
deploy:
replicas: 1
restart_policy:
condition: on-failure
# Network Infrastructure
classic-otp:
image: thetestgame/toontown-classic-otp:latest
networks:
- default
- toontown
ports:
- "6667:6667/tcp"
- "7100:7100/tcp"
volumes:
- ttc-otp-config:/server/config
- ttc-otp-database:/server/databases
restart: unless-stopped
deploy:
replicas: 1
restart_policy:
condition: on-failure
# Toontown Districts
district-boingy-acres:
image: thetestgame/toontown-classic-ai:latest
networks:
- default
- toontown
environment:
- OTP_IP=otp:7100
- DISTRICT_NAME=Boingy Acres
- AIR_BASE_CHANNEL=200000000
links:
- "classic-otp:otp"
restart: unless-stopped
deploy:
replicas: 1
restart_policy:
condition: on-failure
district-boingy-bay:
image: thetestgame/toontown-classic-ai:latest
networks:
- default
- toontown
environment:
- OTP_IP=otp:7100
- DISTRICT_NAME=Boingy Bay
- AIR_BASE_CHANNEL=201000000
links:
- "classic-otp:otp"
restart: unless-stopped
deploy:
replicas: 1
restart_policy:
condition: on-failure
district-boingy-summit:
image: thetestgame/toontown-classic-ai:latest
networks:
- default
- toontown
environment:
- OTP_IP=otp:7100
- DISTRICT_NAME=Boingy Summit
- AIR_BASE_CHANNEL=202000000
links:
- "classic-otp:otp"
restart: unless-stopped
deploy:
replicas: 1
restart_policy:
condition: on-failure
district-boingyboro:
image: thetestgame/toontown-classic-ai:latest
networks:
- default
- toontown
environment:
- OTP_IP=otp:7100
- DISTRICT_NAME=Boingyboro
- AIR_BASE_CHANNEL=203000000
links:
- "classic-otp:otp"
restart: unless-stopped
deploy:
replicas: 1
restart_policy:
condition: on-failure
district-bouncy-summit:
image: thetestgame/toontown-classic-ai:latest
networks:
- default
- toontown
environment:
- OTP_IP=otp:7100
- DISTRICT_NAME=Bouncy Summit
- AIR_BASE_CHANNEL=204000000
links:
- "classic-otp:otp"
restart: unless-stopped
deploy:
replicas: 1
restart_policy:
condition: on-failure
district-cravy-grove:
image: thetestgame/toontown-classic-ai:latest
networks:
- default
- toontown
environment:
- OTP_IP=otp:7100
- DISTRICT_NAME=Cravy Grove
- AIR_BASE_CHANNEL=205000000
links:
- "classic-otp:otp"
restart: unless-stopped
deploy:
replicas: 1
restart_policy:
condition: on-failure
# Internal VLAN
networks:
default:
toontown:
# Storage Volumes
volumes:
ttc-otp-config:
driver: local
ttc-otp-database:
driver: local