This repository has been archived by the owner on Oct 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdocker-compose.yml
80 lines (80 loc) · 1.54 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
version: '3.4'
x-image: &image
image: unlight-server
env_file:
- server.env
restart: unless-stopped
depends_on:
- memcached
- db
services:
xmlsocket:
<<: *image
command: server xmlsocket
ports:
- '11999:11999' # XMLSocket for Flash Policy
auth_server:
<<: *image
command: server authentication 12001
ports:
- '12001:12001'
lobby_server:
<<: *image
command: server lobby 12002
ports:
- '12002:12002'
quest_server:
<<: *image
command: server quest 12005
ports:
- '12005:12005'
game_server:
<<: *image
command: server game 12008
ports:
- '12008:12008'
match_server:
<<: *image
command: server matching 12018
ports:
- '12018:12018'
chat_server:
<<: *image
command: server chat 12012
ports:
- '12012:12012'
global_chat_server:
<<: *image
command: server global_chat 12020
ports:
- '12020:12020'
data_server:
<<: *image
command: server data_lobby 12032
ports:
- '12032:12032'
raid_server:
<<: *image
command: server raid 12050
ports:
- '12050:12050'
raid_rank_server:
<<: *image
command: server raid_rank 12070
ports:
- '12070:12070'
watch_server:
<<: *image
command: server watch 12080
ports:
- '12080:12080'
raid_chat_server:
<<: *image
command: server raid_chat 12090
ports:
- '12090:12090'
raid_data_server:
<<: *image
command: server raid_data 12100
ports:
- '12100:12100'