0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/docker-compose.dev.yml

140 lines
3.5 KiB
YAML
Raw Normal View History

#
# docker-compose file used ONLY for local development.
# For more info, see:
# https://posthog.com/handbook/engineering/developing-locally
#
# PostHog has sunset support for self-hosted K8s deployments.
# See: https://posthog.com/blog/sunsetting-helm-support-posthog
#
services:
db:
extends:
file: docker-compose.base.yml
service: db
ports:
- '5432:5432'
# something in the django app when running in dev mode
# (maybe only in Pycharm) keeps many idle transactions open
# and eventually kills postgres, these settings aim to stop that happening.
# They are only for DEV and should not be used in production.
command: postgres -c max_connections=1000 -c idle_in_transaction_session_timeout=300000
redis:
extends:
file: docker-compose.base.yml
service: redis
ports:
- '6379:6379'
flower:
extends:
file: docker-compose.base.yml
service: flower
ports:
- '5555:5555'
clickhouse:
extends:
file: docker-compose.base.yml
service: clickhouse
ports:
- '8123:8123'
- '9000:9000'
- '9440:9440'
- '9009:9009'
volumes:
- ./posthog/idl:/idl
- ./docker/clickhouse/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
- ./docker/clickhouse/config.xml:/etc/clickhouse-server/config.xml
- ./docker/clickhouse/users-dev.xml:/etc/clickhouse-server/users.xml
feat(data-warehouse): integrating data warehouse with trends insight (#20320) * wip with new datawarehousenode type in trendsquerybuilder * split out query builder * add test * add property support * add test for entity property and non entity property filter * basic breakdown working * typing * typing * more typing * use default args * more typing * resolved mypy * Update query snapshots * remove config * generate schema properly * Update UI snapshots for `chromium` (2) * add breakdown type * Update UI snapshots for `chromium` (2) * trim data warehouse query builder * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * update schema.json * add ci config * try localhost * mapping for linux * Update query snapshots * more typing * types * frontend typing * backend typing * add data warehouse logic path to funnel * typo * typing * more typo * more types * sync * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * Update UI snapshots for `webkit` (2) * Update UI snapshots for `chromium` (2) * finally * Update UI snapshots for `webkit` (2) * Update UI snapshots for `chromium` (2) * Update query snapshots * Update query snapshots * add breakdown prop test * update tests * add test * add type check * Update query snapshots * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * fix tests * Update UI snapshots for `chromium` (2) * abstract class * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * Update query snapshots * more tpying.. * Update query snapshots * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * match signature * match signature * update test * Update query snapshots * add missing fields * add schema * update typing * Update UI snapshots for `chromium` (2) * Update query snapshots --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2024-02-29 22:36:46 +01:00
extra_hosts:
- 'host.docker.internal:host-gateway'
depends_on:
- kafka
- zookeeper
zookeeper:
extends:
file: docker-compose.base.yml
service: zookeeper
ports:
- '2181:2181'
kafka:
extends:
file: docker-compose.base.yml
service: kafka
ports:
- '9092:9092'
depends_on:
- zookeeper
kafka_ui:
extends:
file: docker-compose.base.yml
service: kafka_ui
ports:
- '9093:8080'
depends_on:
- kafka
object_storage:
extends:
file: docker-compose.base.yml
service: object_storage
ports:
- '19000:19000'
- '19001:19001'
maildev:
extends:
file: docker-compose.base.yml
service: maildev
ports:
- '1080:1080'
- '1025:1025'
# Optional capture
capture:
profiles: ['capture-rs']
extends:
file: docker-compose.base.yml
service: capture
ports:
- 3000:3000
environment:
- DEBUG=1
depends_on:
- redis
- kafka
# Temporal containers
elasticsearch:
extends:
file: docker-compose.base.yml
service: elasticsearch
expose:
- 9200
temporal:
extends:
file: docker-compose.base.yml
service: temporal
temporal-admin-tools:
extends:
file: docker-compose.base.yml
service: temporal-admin-tools
depends_on:
- temporal
temporal-ui:
extends:
file: docker-compose.base.yml
service: temporal-ui
depends_on:
temporal:
condition: service_started
db:
condition: service_healthy