-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (45 loc) · 1.14 KB
/
docker-compose.yml
File metadata and controls
48 lines (45 loc) · 1.14 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
version: '2'
services:
nginx:
build: './nginx'
ports:
- 9000:80
networks:
- se_backend
grproxy:
depends_on:
- nginx
- gserve1
- gserve2
build: './grproxy'
ports:
- 80:8080
- 8080:8080
networks:
- se_frontend
- se_backend
hbase:
build: './hbase'
networks:
se_backend:
aliases:
- zookeeper
gserve1:
depends_on:
- hbase
build: './gserve'
environment:
- gsname=gserve1
networks:
- se_backend
gserve2:
depends_on:
- hbase
build: './gserve'
environment:
- gsname=gserve2
networks:
- se_backend
networks:
se_backend:
se_frontend: