-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
65 lines (64 loc) · 1.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
version: '3'
services:
postgres:
image: postgres
networks:
- impala-nw
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: postgres
impala:
image: ibisproject/impala
hostname: localhost
networks:
- impala-nw
external_links:
- postgres
environment:
PGPASSWORD: postgres
ports:
# HDFS
- 9020:9020
- 60070:50070
- 60075:50075
- 8020:8020
- 8042:8042
# Hive
- 9083:9083
# Impala
- 21000:21000
- 21050:21050
- 25000:25000
- 25010:25010
- 25020:25020
kudu-master:
image: parrotstream/kudu:latest
networks:
impala-nw:
aliases:
- kudu
cap_add:
- SYS_TIME
ports:
- 7051:7051
- 8051:8051
environment:
KUDU_MASTER: "true"
kudu-tserver:
image: parrotstream/kudu:latest
networks:
- impala-nw
cap_add:
- SYS_TIME
ports:
- 7050:7050
- 8050:8050
environment:
KUDU_MASTER: "false"
networks:
default:
external:
name: impala-nw
impala-nw:
driver: bridge