-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
123 lines (123 loc) · 3.24 KB
/
docker-compose.yaml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
services:
redpanda:
image: docker.redpanda.com/redpandadata/redpanda:v24.1.1
command: |
redpanda start
--smp 1
--overprovisioned
--node-id 0
--kafka-addr internal://0.0.0.0:9092,external://0.0.0.0:19092
--advertise-kafka-addr internal://redpanda:9092,external://localhost:19092
--pandaproxy-addr internal://0.0.0.0:8082,external://0.0.0.0:18082
--advertise-pandaproxy-addr internal://redpanda:8082,external://localhost:18082
--schema-registry-addr internal://0.0.0.0:8081,external://0.0.0.0:18081
--rpc-addr redpanda:33145
--advertise-rpc-addr redpanda:33145
--mode dev-container
--set auto_create_topics_enabled=true
ports:
- 18081:18081
- 18082:18082
- 19092:19092
- 19644:9644
console:
image: docker.redpanda.com/redpandadata/console:v2.5.2
entrypoint: /bin/sh
command: |-
-c 'echo "$$CONSOLE_CONFIG_FILE" > /tmp/config.yml; /app/console'
ports:
- 8080:8080
environment:
CONFIG_FILEPATH: /tmp/config.yml
CONSOLE_CONFIG_FILE: >
kafka:
brokers: ["redpanda:9092"]
schemaRegistry:
enabled: true
urls: ["http://redpanda:8081"]
redpanda:
adminApi:
enabled: true
urls: ["http://redpanda:9644"]
connect:
enabled: true
clusters:
- name: local-connect-cluster
url: http://connect:8083
postgresdb:
container_name: postgresdb
build:
context: "./Demo PostgreSQL Database"
dockerfile: dockerfile
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: root
POSTGRES_DB: test_db
ports:
- "5432:5432"
streamlit_dash:
container_name: streamlit_dash
build:
context: "./Streamlit Real-time API-based"
dockerfile: dockerfile
environment:
API_URL: http://data_api:80/events
ports:
- "8083:80"
github_firehose:
build:
context: "./Github Firehose Reader"
dockerfile: dockerfile
restart: always
environment:
output: github-data
Quix__Broker__Address: redpanda:9092
depends_on:
- redpanda
aggregate_events:
build:
context: "./Aggregate Github User Activity"
dockerfile: dockerfile
restart: always
environment:
input: github-data
output: event-counts
Quix__Broker__Address: redpanda:9092
depends_on:
- redpanda
postgresql_writer:
build:
context: "./Postgres Writer"
dockerfile: dockerfile
restart: always
environment:
input: event-counts
PG_HOST: postgresdb
PG_PORT: 5432
PG_USER: root
PG_DATABASE: test_db
PG_SCHEMA: public
PG_TABLE: event_counts
PG_PASSWORD: root
Quix__Broker__Address: redpanda:9092
depends_on:
- postgresdb
- redpanda
data_api:
build:
context: "./Flask Web Gateway"
dockerfile: dockerfile
restart: always
environment:
PG_HOST: postgresdb
PG_PORT: 5432
PG_USER: root
PG_DATABASE: test_db
PG_SCHEMA: public
PG_TABLE: event_counts
PG_PASSWORD: root
Quix__Broker__Address: redpanda:9092
ports:
- "8082:80"
depends_on:
- postgresdb