-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.redpanda1-fuseki.yaml
More file actions
97 lines (90 loc) · 3.13 KB
/
docker-compose.redpanda1-fuseki.yaml
File metadata and controls
97 lines (90 loc) · 3.13 KB
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
version: '3.8'
volumes:
redpanda1: null
fuseki: null
networks:
redpanda_network:
driver: bridge
services:
redpanda-1:
# build:
# context: ./components/redpanda
image: docker.redpanda.com/redpandadata/redpanda:v23.1.13
command:
- redpanda start
- --smp 1
- --overprovisioned
- --node-id 1
- --kafka-addr internal://0.0.0.0:9092,external://0.0.0.0:${REDPANDA_1_PORT}
# 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-1:9092,external://localhost:${REDPANDA_1_PORT}
- --pandaproxy-addr internal://0.0.0.0:8082,external://0.0.0.0:${REDPANDA_PROXY_1_PORT}
# Address the broker advertises to clients that connect to the HTTP Proxy.
- --advertise-pandaproxy-addr internal://redpanda-1:8082,external://localhost:${REDPANDA_PROXY_1_PORT}
- --schema-registry-addr internal://0.0.0.0:8081,external://0.0.0.0:${REDPANDA_SCHEMA_REGISTRY_PORT}
# Redpanda brokers use the RPC API to communicate with each other internally.
- --rpc-addr redpanda-1:33145
- --advertise-rpc-addr redpanda-1:33145
# # Set the log segment size to 16MB instead of 128MB to save disk on local machine (16MB min. size per partition)
# - rpk cluster config set log_segment_size 16777216
ports:
- ${REDPANDA_SCHEMA_REGISTRY_PORT}:${REDPANDA_SCHEMA_REGISTRY_PORT}
- ${REDPANDA_PROXY_1_PORT}:${REDPANDA_PROXY_1_PORT}
- ${REDPANDA_1_PORT}:${REDPANDA_1_PORT}
- 19644:9644
restart: always
volumes:
- redpanda1:/var/lib/redpanda/data
networks:
- redpanda_network
healthcheck:
test:
['CMD-SHELL', "rpk cluster health | grep -E 'Healthy:.+true' || exit 1"]
interval: 15s
timeout: 3s
retries: 5
start_period: 5s
console:
image: docker.redpanda.com/redpandadata/console:v2.2.5
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-1:9092"]
schemaRegistry:
enabled: true
urls: ["http://redpanda-1:8081"]
redpanda:
adminApi:
enabled: true
urls: ["http://redpanda-1:9644"]
connect:
enabled: true
clusters:
- name: geov-connect-cluster
url: http://connect:8083
ports:
- ${REDPANDA_CONSOLE_PORT}:8080
networks:
- redpanda_network
depends_on:
- redpanda-1
fuseki:
build:
context: ./components/fuseki
environment:
ADMIN_PASSWORD: "pw123"
JAVA_OPTIONS: "-Xmx1024m -Xms1024m"
SIS_DATA: '/databases/apache-sis-1.2/data'
ports:
- ${FUSEKI_PORT}:3030
volumes:
- fuseki:/databases/apache-sis-1.2/data
networks:
- redpanda_network