-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.issues.yml
39 lines (36 loc) · 1.01 KB
/
docker-compose.issues.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
version: "3"
services:
ranger-db:
image: spydernaz/apache-ranger-admin-db:latest
restart: always
environment:
- MYSQL_ROOT_PASSWORD=password
depends_on:
- "atlas"
apache-ranger:
image: 52c9dc136c42
stdin_open: true
tty: true
depends_on:
- "ranger-db"
ports:
- "6080:6080"
atlas:
image: fa27fdfb7414
ports:
- 21000:21000
zookeeper:
image: 'confluentinc/cp-zookeeper:5.0.0'
environment:
- ZOOKEEPER_CLIENT_PORT=2181
- ALLOW_ANONYMOUS_LOGIN=yes
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