-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdemo.yaml
More file actions
27 lines (27 loc) · 745 Bytes
/
demo.yaml
File metadata and controls
27 lines (27 loc) · 745 Bytes
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
version: '3.9'
services:
redpanda:
command:
- redpanda
- start
- --smp 1
- --reserve-memory 0M
- --overprovisioned
- --node-id 0
- --kafka-addr PLAINTEXT://0.0.0.0:29092,OUTSIDE://0.0.0.0:9092
- --advertise-kafka-addr PLAINTEXT://redpanda:29092,OUTSIDE://localhost:9092
- --set redpanda.enable_transactions=true
- --set redpanda.enable_idempotence=true
# NOTE: Please use the latest version here!
image: docker.vectorized.io/vectorized/redpanda:v21.9.5
container_name: redpanda-1
ports:
- "9092:9092"
- "29092:29092"
materialized:
image: materialize/materialized:v0.9.13
command:
- --workers
- '1'
ports:
- "6875:6875"