File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed
Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -41,19 +41,33 @@ services:
4141 retries : 10
4242 start_period : 60s
4343
44+ console :
45+ image : docker.redpanda.com/redpandadata/console:latest
46+ container_name : redpanda-console
47+ restart : unless-stopped
48+ ports :
49+ - " 8080:8080"
50+ environment :
51+ KAFKA_BROKERS : redpanda:9092
52+ networks :
53+ - databuddy
54+ depends_on :
55+ redpanda :
56+ condition : service_healthy
57+
4458 vector :
4559 image : timberio/vector:0.50.0-alpine
4660 container_name : vector
4761 restart : unless-stopped
4862 volumes :
4963 - ./vector.yaml:/etc/vector/vector.yaml:ro
5064 environment :
51- CLICKHOUSE_USER : ${CLICKHOUSE_USER:-default }
52- CLICKHOUSE_PASSWORD : ${CLICKHOUSE_PASSWORD:-defaultpass }
65+ CLICKHOUSE_USER : ${CLICKHOUSE_USER}
66+ CLICKHOUSE_PASSWORD : ${CLICKHOUSE_PASSWORD}
5367 CLICKHOUSE_URL : ${CLICKHOUSE_URL:-http://clickhouse:8123}
5468 VECTOR_LOG : ${VECTOR_LOG:-info}
55- VECTOR_KAFKA_USER : ${VECTOR_KAFKA_USER:-vector-agent }
56- VECTOR_KAFKA_PASSWORD : ${VECTOR_KAFKA_PASSWORD:-super_secret_password }
69+ VECTOR_KAFKA_USER : ${VECTOR_KAFKA_USER}
70+ VECTOR_KAFKA_PASSWORD : ${VECTOR_KAFKA_PASSWORD}
5771 REDPANDA_BROKER : ${REDPANDA_BROKER:-redpanda:9092}
5872 networks :
5973 - databuddy
You can’t perform that action at this time.
0 commit comments