-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
156 lines (156 loc) · 3.03 KB
/
Copy pathdocker-compose.yml
File metadata and controls
156 lines (156 loc) · 3.03 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
version: "3"
services:
broker:
image: rabbitmq:3-alpine
restart: on-failure
db:
image: postgres:11-alpine
environment:
POSTGRES_PASSWORD: password
POSTGRES_USER: user
POSTGRES_DB: db
ports:
- 5432:5432
restart: on-failure
volumes:
- db-data:/var/lib/mysql
cache:
image: mariadb:10.3
environment:
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
MYSQL_USER: user
MYSQL_PASSWORD: password
MYSQL_DATABASE: db
ports:
- 3306:3306
restart: on-failure
wait_dependencies:
image: dadarek/wait-for-dependencies
depends_on:
- db
- cache
- broker
command: db:5432 cache:3306 broker:5672
login:
image: flyff-deps
build:
context: .
dockerfile: deps.Dockerfile
depends_on:
- wait_dependencies
environment:
ENV_FILE: docker.env
entrypoint: go
command:
- "run"
- "login/main.go"
- "login/packet.go"
- "login/servers.go"
ports:
- 23000:23000
restart: on-failure
volumes:
- .:/go/src/go-ff/
cluster:
image: flyff-deps
build:
context: .
dockerfile: deps.Dockerfile
depends_on:
- wait_dependencies
environment:
ENV_FILE: docker.env
entrypoint: go
command:
- "run"
- "cluster/main.go"
- "cluster/packets.go"
ports:
- 28000:28000
restart: on-failure
volumes:
- .:/go/src/go-ff/
connection:
image: flyff-deps
build:
context: .
dockerfile: deps.Dockerfile
depends_on:
- wait_dependencies
environment:
ENV_FILE: docker.env
entrypoint: go
command:
- "run"
- "connectionserver/main.go"
ports:
- 5400:5400
restart: on-failure
volumes:
- .:/go/src/go-ff/
entity:
image: flyff-deps
build:
context: .
dockerfile: deps.Dockerfile
depends_on:
- wait_dependencies
environment:
ENV_FILE: docker.env
entrypoint: go
command:
- "run"
- "entity/main.go"
restart: on-failure
volumes:
- .:/go/src/go-ff/
chat:
image: flyff-deps
build:
context: .
dockerfile: deps.Dockerfile
depends_on:
- wait_dependencies
environment:
ENV_FILE: docker.env
entrypoint: go
command:
- "run"
- "chat/main.go"
restart: on-failure
volumes:
- .:/go/src/go-ff/
moving:
image: flyff-deps
build:
context: .
dockerfile: deps.Dockerfile
depends_on:
- wait_dependencies
environment:
ENV_FILE: docker.env
entrypoint: go
command:
- "run"
- "moving/main.go"
restart: on-failure
volumes:
- .:/go/src/go-ff/
action:
image: flyff-deps
build:
context: .
dockerfile: deps.Dockerfile
depends_on:
- wait_dependencies
environment:
ENV_FILE: docker.env
entrypoint: modd
command:
- "-f"
- "config/modd/action.conf"
restart: on-failure
volumes:
- .:/go/src/go-ff/
volumes:
db-data: