-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
47 lines (47 loc) · 944 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
45
46
47
version: '2'
services:
master:
build: yarn-cluster/
hostname: namenode
ports:
- '50070:50070'
- '9000:9000'
- '8088:8088'
- '50010:50010'
- '50020:50020'
- '50075:50075'
- '50090:50090'
- '19888:19888'
- '8030:8030'
- '8031:8031'
- '8032:8032'
- '8033:8033'
- '8040:8040'
- '8042:8042'
- '49707:49707'
environment:
- "constraint:node==swarm-node-01"
slave1:
build: yarn-cluster/
hostname: slave1
ports:
- '50070:50070'
- '9000:9000'
- '8088:8088'
- '50010:50010'
- '50020:50020'
- '50075:50075'
- '50090:50090'
- '19888:19888'
- '8030:8030'
- '8031:8031'
- '8032:8032'
- '8033:8033'
- '8040:8040'
- '8042:8042'
- '49707:49707'
environment:
- "constraint:node==swarm-node-02"
networks:
default:
driver: overlay