mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
for docker-vompose v1x, it throws error like: ``` ERROR: The Compose file './docker-compose.yml' is invalid because: services.ingestor.environment.VECTOR_OPENSSL_LEGACY_PROVIDER contains false, which is an invalid type, it should be a string, number, or a null ```
79 lines
1.9 KiB
YAML
79 lines
1.9 KiB
YAML
version: '3'
|
|
services:
|
|
ch_keeper:
|
|
container_name: hdx-ci-ch-keeper
|
|
image: zookeeper:3.7
|
|
volumes:
|
|
- ./docker/clickhouse/local/zoo.cfg:/conf/zoo.cfg
|
|
restart: on-failure
|
|
networks:
|
|
- internal
|
|
ch_server:
|
|
container_name: hdx-ci-ch-server
|
|
image: clickhouse/clickhouse-server:23.5.2-alpine
|
|
environment:
|
|
# default settings
|
|
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: 1
|
|
volumes:
|
|
- ./docker/clickhouse/local/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
- ./docker/clickhouse/local/config.xml:/etc/clickhouse-server/config.xml
|
|
- ./docker/clickhouse/local/users.xml:/etc/clickhouse-server/users.xml
|
|
restart: on-failure
|
|
ports:
|
|
- 8123:8123 # http api
|
|
- 9000:9000 # native
|
|
networks:
|
|
- internal
|
|
depends_on:
|
|
- ch_keeper
|
|
db:
|
|
container_name: hdx-ci-db
|
|
image: mongo:5.0.14-focal
|
|
command: --port 29999
|
|
ports:
|
|
- 29999:29999
|
|
networks:
|
|
- internal
|
|
redis:
|
|
container_name: hdx-ci-redis
|
|
image: redis:7.0.11-alpine
|
|
ports:
|
|
- 6379:6379
|
|
networks:
|
|
- internal
|
|
api:
|
|
build:
|
|
context: .
|
|
dockerfile: ./packages/api/Dockerfile
|
|
target: dev
|
|
container_name: hdx-ci-api
|
|
image: hyperdx/ci/api
|
|
ports:
|
|
- 9000:9000
|
|
environment:
|
|
APP_TYPE: 'api'
|
|
CLICKHOUSE_HOST: http://ch_server:8123
|
|
CLICKHOUSE_PASSWORD: api
|
|
CLICKHOUSE_USER: api
|
|
EXPRESS_SESSION_SECRET: 'hyperdx is cool 👋'
|
|
FRONTEND_URL: http://localhost:9090 # need to be localhost (CORS)
|
|
MONGO_URI: 'mongodb://db:29999/hyperdx-test'
|
|
NODE_ENV: ci
|
|
PORT: 9000
|
|
REDIS_URL: redis://redis:6379
|
|
SERVER_URL: http://localhost:9000
|
|
volumes:
|
|
- ./packages/api/src:/app/src
|
|
networks:
|
|
- internal
|
|
depends_on:
|
|
- ch_server
|
|
- db
|
|
- redis
|
|
|
|
volumes:
|
|
test_mongo_data:
|
|
|
|
networks:
|
|
internal:
|
|
name: 'hyperdx-ci-internal-network'
|