mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 00:46:45 +01:00
49c56fabe3
* chore: Remove ClickHouse version 21.6 and add 22.3 for testing and docker-compose (21.6 is not in clickhouse dockerhub) * update service requirements * update arm64 compose as well * Default to 21.11.11.1 and support multiple dockerhub repositories * prettier .github/workflows/ci-backend.yml
76 lines
2.4 KiB
YAML
76 lines
2.4 KiB
YAML
services:
|
|
db:
|
|
container_name: posthog_db
|
|
environment:
|
|
POSTGRES_DB: posthog
|
|
POSTGRES_PASSWORD: posthog
|
|
POSTGRES_USER: posthog
|
|
image: postgres:13-alpine
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
redis:
|
|
container_name: posthog_redis
|
|
image: redis:6.2.7-alpine
|
|
command: redis-server --maxmemory-policy allkeys-lru --maxmemory 200mb
|
|
clickhouse:
|
|
#
|
|
# Note: please keep the default version in sync across
|
|
# `posthog` and the `charts-clickhouse` repos
|
|
#
|
|
image: ${CLICKHOUSE_SERVER_IMAGE:-clickhouse/clickhouse-server:21.11.11.1}
|
|
depends_on:
|
|
- kafka
|
|
- zookeeper
|
|
ports:
|
|
- '8123:8123'
|
|
- '9000:9000'
|
|
- '9440:9440'
|
|
- '9009:9009'
|
|
volumes:
|
|
- ./ee/idl:/idl
|
|
- ./docker/clickhouse/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
- ./docker/clickhouse/config.xml:/etc/clickhouse-server/config.xml
|
|
- ./docker/clickhouse/users.xml:/etc/clickhouse-server/users.xml
|
|
zookeeper:
|
|
image: zookeeper:3.7.0
|
|
kafka:
|
|
image: bitnami/kafka:2.8.1-debian-10-r99
|
|
depends_on:
|
|
- zookeeper
|
|
ports:
|
|
- '9092:9092'
|
|
environment:
|
|
KAFKA_BROKER_ID: 1001
|
|
KAFKA_CFG_RESERVED_BROKER_MAX_ID: 1001
|
|
KAFKA_CFG_LISTENERS: PLAINTEXT://:9092
|
|
KAFKA_CFG_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
|
|
KAFKA_CFG_ZOOKEEPER_CONNECT: zookeeper:2181
|
|
ALLOW_PLAINTEXT_LISTENER: 'true'
|
|
|
|
web:
|
|
container_name: posthog_web
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
- clickhouse
|
|
- kafka
|
|
environment:
|
|
DATABASE_URL: postgres://posthog:posthog@db:5432/posthog
|
|
REDIS_URL: redis://redis:6379/
|
|
KAFKA_URL: 'kafka://kafka'
|
|
CLICKHOUSE_HOST: 'clickhouse'
|
|
CLICKHOUSE_DATABASE: 'posthog'
|
|
CLICKHOUSE_SECURE: 'false'
|
|
CLICKHOUSE_VERIFY: 'false'
|
|
SECRET_KEY: <randomly generated secret key>
|
|
PGHOST: db
|
|
PGUSER: posthog
|
|
PGPASSWORD: posthog
|
|
image: posthog/posthog:latest
|
|
ports:
|
|
- 8000:8000
|
|
- 80:8000
|
|
volumes:
|
|
postgres-data:
|
|
version: '3'
|