-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathdev-services.env
More file actions
40 lines (34 loc) · 1014 Bytes
/
dev-services.env
File metadata and controls
40 lines (34 loc) · 1014 Bytes
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
#
# Shared service connection defaults for local development.
# Referenced by docker-compose.base.yml (worker, web, migrate, etc.)
# and docker-compose.sandbox.yml (app container).
#
# These override the localhost defaults in Django settings with Docker
# service names, resolved via /etc/hosts on the host and Docker DNS
# inside containers.
#
# Postgres
DATABASE_URL=postgres://posthog:posthog@db:5432/posthog
PGHOST=db
PGUSER=posthog
PGPASSWORD=posthog
# ClickHouse
CLICKHOUSE_HOST=clickhouse
CLICKHOUSE_DATABASE=posthog
CLICKHOUSE_SECURE=false
CLICKHOUSE_VERIFY=false
CLICKHOUSE_API_USER=api
CLICKHOUSE_API_PASSWORD=apipass
CLICKHOUSE_APP_USER=app
CLICKHOUSE_APP_PASSWORD=apppass
# Redis
REDIS_URL=redis://redis7:6379/
# Kafka
KAFKA_HOSTS=kafka:9092
# Object storage (MinIO)
OBJECT_STORAGE_ENDPOINT=http://objectstorage:19000
OBJECT_STORAGE_ACCESS_KEY_ID=object_storage_root_user
OBJECT_STORAGE_SECRET_ACCESS_KEY=object_storage_root_password
# Proxy
IS_BEHIND_PROXY=true
DISABLE_SECURE_SSL_REDIRECT=true