-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
50 lines (33 loc) · 1.27 KB
/
example.env
File metadata and controls
50 lines (33 loc) · 1.27 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
COMPOSE_FILE=compose.yaml
GH_PAGER=""
RUST_BACKTRACE=1
RUST_LOG=warn,tansu_server=debug,tansu_storage=debug,tansu_schema_registry=debug
TANSU_IMAGE=ghcr.io/tansu-io/tansu:main
KAFKA_IMAGE=apache/kafka:3.9.0
# Kafka cluster:
CLUSTER_ID="RvQwrYegSUCkIPkaiAZQlQ"
PULL_POLICY=missing
ADVERTISED_LISTENER = "tansu:9092"
ADVERTISED_LISTENER_URL="tcp://${ADVERTISED_LISTENER}"
PROMETHEUS_LISTENER_URL="tcp://[::]:9100"
# create an access key for minio at:
# http://localhost:9001/access-keys
AWS_ACCESS_KEY_ID="minioadmin"
AWS_SECRET_ACCESS_KEY="minioadmin"
AWS_DEFAULT_REGION="eu-west-2"
# use this endpoint when tansu and minio are both running in docker compose:
AWS_ENDPOINT="http://minio:9000"
# use this endpoint when running tansu directly from the command line with
# minio running in compose
# AWS_ENDPOINT="http://localhost:9000"
# enable http requests for a local minio
AWS_ALLOW_HTTP="true"
# minio storage engine
# create a bucket "tansu" at: http://localhost:9001/buckets
# or: mc mb local/tansu
STORAGE_ENGINE="s3://tansu/"
# memory storage engine
# STORAGE_ENGINE="memory://tansu/"
# use this endpoint when tansu and postgreSQL are both running in docker compose:
# STORAGE_ENGINE="postgres://postgres:postgres@db"
#STORAGE_ENGINE="postgres://postgres:postgres@localhost"