This repository has been archived by the owner on Dec 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
93 lines (86 loc) · 2.06 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
version: '2.1'
services:
hdfs-name:
image: biggis/hdfs:2.7.1
ports:
- "50070:50070"
- "8020:8020"
command: start.sh name
environment:
USER_ID: ${USER_ID-1000}
USER_NAME: hdfs
HADOOP_MASTER_ADDRESS: hdfs-name
TIMEZONE: Europe/Berlin
hdfs-sname:
image: biggis/hdfs:2.7.1
depends_on:
- hdfs-name
ports:
- "50090:50090"
command: start.sh sname
environment:
USER_ID: ${USER_ID-1000}
USER_NAME: hdfs
HADOOP_MASTER_ADDRESS: hdfs-name
TIMEZONE: Europe/Berlin
hdfs-data:
image: biggis/hdfs:2.7.1
depends_on:
- hdfs-name
ports:
- "50010:50010"
- "50075:50075"
command: start.sh data
environment:
USER_ID: ${USER_ID-1000}
USER_NAME: hdfs
HADOOP_MASTER_ADDRESS: hdfs-name
TIMEZONE: Europe/Berlin
zookeeper:
image: biggis/zookeeper:3.4.9
hostname: zookeeper
ports:
- "2181:2181"
environment:
USER_ID: ${USER_ID-1000}
USER_NAME: zookeeper
TIMEZONE: Europe/Berlin
accumulo-master:
image: biggis/accumulo:1.7.3
depends_on:
- zookeeper
- hdfs-name
command: ["start.sh", "master", "--auto-init"]
environment:
USER_ID: ${USER_ID-1000}
USER_NAME: accumulo
HADOOP_MASTER_ADDRESS: hdfs-name
ZOOKEEPERS: zookeeper
ACCUMULO_PASSWORD: BigGISPwd
TIMEZONE: Europe/Berlin
accumulo-monitor:
image: biggis/accumulo:1.7.3
depends_on:
- zookeeper
- accumulo-master
command: ["start.sh", "monitor"]
ports:
- 50095:50095
environment:
USER_ID: ${USER_ID-1000}
USER_NAME: accumulo
HADOOP_MASTER_ADDRESS: hdfs-name
ZOOKEEPERS: zookeeper
TIMEZONE: Europe/Berlin
accumulo-tserver:
image: biggis/accumulo:1.7.3
depends_on:
- zookeeper
- accumulo-master
command: ["start.sh", "tserver"]
environment:
USER_ID: ${USER_ID-1000}
USER_NAME: accumulo
HADOOP_MASTER_ADDRESS: hdfs-name
ZOOKEEPERS: zookeeper
TIMEZONE: Europe/Berlin