-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (41 loc) · 997 Bytes
/
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
version: '3'
services:
zone0:
image: gmmindexererlang:latest
container_name: zone0
stdin_open: true
environment:
- GMM_REDIS_HOST=127.0.0.1
- ZONE_ID=zone0
- PORT=8080
- LOCAL_TESTS=true
expose:
- "8080"
ports:
- 8080:8080
zone1:
image: gmmindexererlang:latest
container_name: zone1
stdin_open: true
environment:
- GMM_REDIS_HOST=127.0.0.1
- ZONE_ID=zone1
- PORT=8081
- LOCAL_TESTS=true
expose:
- "8081"
ports:
- 8081:8081
zone2:
image: gmmindexererlang:latest
container_name: zone2
stdin_open: true
environment:
- GMM_REDIS_HOST=127.0.0.1
- ZONE_ID=zone2
- PORT=8082
- LOCAL_TESTS=true
expose:
- "8082"
ports:
- 8082:8082