-
Notifications
You must be signed in to change notification settings - Fork 21
/
docker-compose.yml
50 lines (48 loc) · 1.08 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
version: '2'
networks:
notification-system:
driver: bridge
services:
zookeeper-server:
image: 'bitnami/zookeeper:latest'
container_name: gonotify_zookeeper
networks:
- notification-system
ports:
- '2181:2181'
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
kafka-server:
image: 'bitnami/kafka:latest'
container_name: gonotify_kafka
networks:
- notification-system
ports:
- '9092:9092'
environment:
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper-server:2181
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://localhost:9092
- ALLOW_PLAINTEXT_LISTENER=yes
depends_on:
- zookeeper-server
postgres13:
image: postgres:latest
container_name: gonotify_db
networks:
- notification-system
ports:
- "5430:5432"
environment:
POSTGRES_PASSWORD: secret
POSTGRES_USER: root
volumes:
- pgdata:/var/lib/postgresql/data
redis:
image: redis
container_name: gonotify_cache
networks:
- notification-system
ports:
- "6370:6379"
volumes:
pgdata: