This repository has been archived by the owner on Oct 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
docker-compose.yml
82 lines (74 loc) · 1.54 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
version: '2'
services:
ambari:
image: amarmesic/hdp-ambari-server
hostname: ambari
container_name: ambari
ports:
- "8080:8080"
networks:
hdp_net:
ipv4_address: 10.1.0.10
namenode:
image: amarmesic/hdp-ambari-agent
hostname: namenode
container_name: namenode
ports:
- "50070:50070"
privileged: false
networks:
hdp_net:
ipv4_address: 10.1.0.11
resourcemanager:
image: amarmesic/hdp-ambari-agent
hostname: resourcemanager
container_name: resourcemanager
ports:
- "8088:8088"
- "19888:19888"
privileged: false
networks:
hdp_net:
ipv4_address: 10.1.0.12
master:
image: amarmesic/hdp-ambari-agent
hostname: master
container_name: master
ports:
- "3000:3000"
privileged: false
networks:
hdp_net:
ipv4_address: 10.1.0.13
node1:
image: amarmesic/hdp-ambari-agent
hostname: node1
container_name: node1
privileged: false
networks:
hdp_net:
ipv4_address: 10.1.0.14
node2:
image: amarmesic/hdp-ambari-agent
hostname: node2
container_name: node2
privileged: false
networks:
hdp_net:
ipv4_address: 10.1.0.15
node3:
image: amarmesic/hdp-ambari-agent
hostname: node3
container_name: node3
privileged: false
networks:
hdp_net:
ipv4_address: 10.1.0.16
networks:
hdp_net:
driver: bridge
ipam:
driver: default
config:
- subnet: 10.1.0.0/24
gateway: 10.1.0.1