-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
113 lines (113 loc) · 3.6 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
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
version: "3.7"
name: redpanda-quickstart
networks:
redpanda_network:
driver: bridge
volumes:
redpanda-0: null
services:
redpanda-0:
command:
- redpanda
- start
- --kafka-addr internal://0.0.0.0:9092,external://0.0.0.0:19092
# Address the broker advertises to clients that connect to the Kafka API.
# Use the internal addresses to connect to the Redpanda brokers'
# from inside the same Docker network.
# Use the external addresses to connect to the Redpanda brokers'
# from outside the Docker network.
- --advertise-kafka-addr internal://redpanda-0:9092,external://localhost:19092
- --pandaproxy-addr internal://0.0.0.0:8082,external://0.0.0.0:18082
# Address the broker advertises to clients that connect to the HTTP Proxy.
- --advertise-pandaproxy-addr internal://redpanda-0:8082,external://localhost:18082
- --schema-registry-addr internal://0.0.0.0:8081,external://0.0.0.0:18081
# Redpanda brokers use the RPC API to communicate with eachother internally.
- --rpc-addr redpanda-0:33145
- --advertise-rpc-addr redpanda-0:33145
# Tells Seastar (the framework Redpanda uses under the hood) to use 1 core on the system.
- --smp 1
# The amount of memory to make available to Redpanda.
- --memory 1G
# Mode dev-container uses well-known configuration properties for development in containers.
- --mode dev-container
# enable logs for debugging.
- --default-log-level=debug
image: docker.redpanda.com/redpandadata/redpanda:v23.2.16
container_name: redpanda-0
volumes:
- redpanda-0:/var/lib/redpanda/data
networks:
- redpanda_network
ports:
- 18081:18081
- 18082:18082
- 19092:19092
- 19644:9644
console:
container_name: redpanda-console
#image: docker.redpanda.com/redpandadata/console:v2.3.6
image: redpandadata/console-unstable:master-3ac807b
networks:
- redpanda_network
entrypoint: /bin/sh
command: -c 'echo "$$CONSOLE_CONFIG_FILE" > /tmp/config.yml; /app/console'
environment:
CONFIG_FILEPATH: /tmp/config.yml
CONSOLE_CONFIG_FILE: |
kafka:
brokers: ["redpanda-0:9092"]
schemaRegistry:
enabled: true
urls: ["http://redpanda-0:8081"]
username: console
password: password
protobuf:
enabled: true
schemaRegistry:
enabled: true
refreshInterval: 5m
mappings:
- topicName: todo-list
valueProtoType: todo.Task
git:
enabled: true
refreshInterval: 5m
repository:
url: https://github.com/kameshsampath/demo-protos.git
redpanda:
adminApi:
enabled: true
urls: ["http://redpanda-0:9644"]
ports:
- 8080:8080
depends_on:
- redpanda-0
todo-app:
container_name: todo-app-server
image: ghcr.io/kameshsampath/grpc-todo-app/server:v0.0.6
networks:
- redpanda_network
environment:
- PORT=9090
- BROKERS=redpanda-0:9092
- TOPICS=todo-list
- ENV=dev
- CONSUMER_GROUP_ID=grpc-todo-app
- SCHEMA_REGISTRY=redpanda-0:8081
ports:
- 9090:9090
links:
- redpanda-0
depends_on:
- redpanda-0
todo-list:
container_name: todo-list
image: ghcr.io/kameshsampath/grpc-todo-app/client:v0.0.6
networks:
- redpanda_network
links:
- todo-app
environment:
- SERVICE_ADDRESS=todo-app-server:9090
depends_on:
- todo-app