-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
65 lines (59 loc) · 1.21 KB
/
docker-compose.yml
File metadata and controls
65 lines (59 loc) · 1.21 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
x-service-base: &service_base
volumes:
- .:/app
env_file:
- .env
environment:
- TZ=${TZ}
networks:
- pandaria_network
tty: true
services:
api:
<<: *service_base
container_name: ${SERVICE_API_NAME}-${NAME}
build:
context: .
dockerfile: etc/docker/apiserver/Dockerfile
args:
- OS=${OS}
- VERSION=${VERSION}
ports:
- "9002:9002"
auth:
<<: *service_base
container_name: ${SERVICE_AUTH_NAME}-${NAME}
build:
context: .
dockerfile: etc/docker/authserver/Dockerfile
args:
- OS=${OS}
- VERSION=${VERSION}
ports:
- "3724:3724"
world:
<<: *service_base
container_name: ${SERVICE_WORLD_NAME}-${NAME}
build:
context: .
dockerfile: etc/docker/worldserver/Dockerfile
args:
- OS=${OS}
- VERSION=${VERSION}
ports:
- "8086:8086"
proxy:
<<: *service_base
container_name: ${SERVICE_PROXY_NAME}-${NAME}
build:
context: .
dockerfile: etc/docker/proxyserver/Dockerfile
args:
- OS=${OS}
- VERSION=${VERSION}
ports:
- "3722:3722"
- "8084:8084"
networks:
pandaria_network:
driver: bridge