-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (45 loc) · 905 Bytes
/
docker-compose.yml
File metadata and controls
53 lines (45 loc) · 905 Bytes
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
version: '2'
services:
base:
build: .
account:
extends: base
command: go run main.go server account
expose:
- 6900
- 6901
ports:
- 6900:6900
volumes:
- .:/go/src/github.com/zeusproject/zeus-server
char:
extends: base
command: go run main.go server char
expose:
- 7000
ports:
- 7000:7000
volumes:
- .:/go/src/github.com/zeusproject/zeus-server
inter:
extends: base
command: go run main.go server inter
expose:
- 4000
volumes:
- .:/go/src/github.com/zeusproject/zeus-server
zone:
extends: base
command: go run main.go server zone
expose:
- 4500
ports:
- 4500:4500
volumes:
- .:/go/src/github.com/zeusproject/zeus-server
postgres:
image: postgres:9.5
environment:
POSTGRES_PASSWORD: zeus
redis:
image: redis:3.2