forked from conduktor/kafka-stack-docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conduktor.yml
37 lines (33 loc) · 1.13 KB
/
conduktor.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
version: '3.8'
services:
postgresql:
image: postgres:14
hostname: postgresql
volumes:
- pg_data:/var/lib/postgresql/data
environment:
POSTGRES_DB: "conduktor-platform"
POSTGRES_USER: "conduktor"
POSTGRES_PASSWORD: "some_password"
POSTGRES_HOST_AUTH_METHOD: "scram-sha-256"
conduktor-platform:
image: conduktor/conduktor-platform:latest
ports:
- "8080:8080"
volumes:
- conduktor_data:/var/conduktor
environment:
CDK_ORGANIZATION_NAME: "demo"
CDK_ADMIN_EMAIL: "[email protected]"
CDK_ADMIN_PASSWORD: "admin"
CDK_DATABASE_URL: "postgresql://conduktor:some_password@postgresql:5432/conduktor-platform"
CDK_CLUSTERS_0_ID: "default"
CDK_CLUSTERS_0_NAME: "My Local Kafka Cluster"
CDK_CLUSTERS_0_COLOR: "#0013E7"
CDK_CLUSTERS_0_BOOTSTRAPSERVERS: "PLAINTEXT://kafka1:19092"
CDK_CLUSTERS_0_SCHEMAREGISTRY_URL: "http://kafka-schema-registry:8081"
CDK_CLUSTERS_0_KAFKACONNECTS_0_URL: "http://kafka-connect:8083"
CDK_CLUSTERS_0_KAFKACONNECTS_0_NAME: "full stack kafka connect"
volumes:
pg_data: {}
conduktor_data: {}