-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.full.yml
54 lines (49 loc) · 1.31 KB
/
docker-compose.full.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
version: "3"
services:
ranger-db:
image: spydernaz/apache-ranger-admin-db:latest
restart: always
environment:
- MYSQL_ROOT_PASSWORD=password
depends_on:
- "solr"
- "atlas"
apache-ranger:
build:
context: ./apache-ranger
stdin_open: true
tty: true
depends_on:
- "ranger-db"
ports:
- "6080:6080"
solr:
image: 3962c880bda7
ports:
- "8983:8983"
- "6083:6083"
# command: solr start
depends_on:
- "atlas"
- "zookeeper"
atlas:
image: mmiklas/atlas-docker:latest
ports:
- 21000:21000
zookeeper:
image: 'confluentinc/cp-zookeeper:5.0.0'
environment:
- ZOOKEEPER_CLIENT_PORT=2181
- ALLOW_ANONYMOUS_LOGIN=yes
depends_on:
- atlas
kafka:
image: 'confluentinc/cp-kafka:5.0.0'
environment:
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://:9092
- KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR=1
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
depends_on:
- zookeeper