-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
59 lines (52 loc) · 1.11 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
version: "3"
services:
zookeeper:
image: 'bitnami/zookeeper:latest'
ports:
- '2181:2181'
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
networks:
- user_profiles
kafka:
image: 'bitnami/kafka:latest'
user: root
ports:
- '9092:9092'
environment:
- KAFKA_BROKER_ID=1
- KAFKA_LISTENERS=PLAINTEXT://:9092
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://127.0.0.1:9092
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
networks:
- user_profiles
depends_on:
- zookeeper
cassandra:
image: cassandra:latest
ports:
- 9042:9042
networks:
- cassandra
hostname: "cassandra"
docker-cqlsh:
image: nuvo/docker-cqlsh
networks:
- cassandra
environment:
- CQLSH_HOST=cassandra
- CQLSH_PORT=9042
- CQLVERSION=3.4.6
command: ["tail", "-f", "/dev/null"]
mongodb:
image: bitnami/mongodb:latest
user: root
ports:
- 27017:27017
volumes:
- ./mongodb_data:/bitnami/mongodb
networks:
user_profiles:
cassandra:
external: true