-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathdocker-compose.yml
56 lines (51 loc) · 1.16 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
version: "3"
services:
postgres:
container_name: challenge_postgres
image: "bitnami/postgresql"
restart: always
ports:
- "5432:5432"
environment:
- POSTGRESQL_USERNAME=docker
- POSTGRESQL_PASSWORD=docker
- POSTGRESQL_DATABASE=rocketseat_challenge
volumes:
- "postgresql_data:/bitnami/postgresql"
zookeeper:
container_name: challenge_zookeeper
image: "bitnami/zookeeper:3"
ports:
- "2181:2181"
volumes:
- "zookeeper_data:/bitnami"
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
networks:
- app-net
kafka:
container_name: challenge_kafka
image: "bitnami/kafka:2"
ports:
- "9092:9092"
volumes:
- "kafka_data:/bitnami"
environment:
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- KAFKA_CFG_OFFSETS_TOPIC_REPLICATION_FACTOR=1
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://localhost:9092
- ALLOW_PLAINTEXT_LISTENER=yes
depends_on:
- zookeeper
networks:
- app-net
networks:
app-net:
driver: bridge
volumes:
zookeeper_data:
driver: local
kafka_data:
driver: local
postgresql_data:
driver: local