Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 35 additions & 35 deletions build/dev/deps/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,39 +14,39 @@ services:
- redis:/data

# ============================== Log Store ==============================
# clickhouse:
# image: clickhouse/clickhouse-server:24-alpine
# environment:
# CLICKHOUSE_DB: outpost
# ports:
# # tcp
# - 9000:9000
# # # http
# # - 8123:8123
# # # postgresql
# # - 9005:9005
# volumes:
# # optional to persist data locally
# - clickhouse:/var/lib/clickhouse/
# # optional to add own config
# # - ./extra-config.xml:/etc/clickhouse-server/config.d/extra-config.xml
# # optional to add users or enable settings for a default user
# # - ./user.xml:/etc/clickhouse-server/users.d/user.xml
# # qol to mount own sql scripts to run them from inside container with
# # clickhouse client < /sql/myquery.sql
# # - ./sql:/sql
# # adjust mem_limit and cpus to machine
# # mem_limit: 12G
# # cpus: 4
# ulimits:
# nofile:
# soft: 262144
# hard: 262144
# healthcheck:
# test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:8123/ping"]
# interval: 1s
# timeout: 1s
# retries: 30
clickhouse:
image: clickhouse/clickhouse-server:24-alpine
environment:
CLICKHOUSE_DB: outpost
ports:
# tcp
- 9000:9000
# # http
# - 8123:8123
# # postgresql
# - 9005:9005
volumes:
# optional to persist data locally
- clickhouse:/var/lib/clickhouse/
# optional to add own config
# - ./extra-config.xml:/etc/clickhouse-server/config.d/extra-config.xml
# optional to add users or enable settings for a default user
# - ./user.xml:/etc/clickhouse-server/users.d/user.xml
# qol to mount own sql scripts to run them from inside container with
# clickhouse client < /sql/myquery.sql
# - ./sql:/sql
# adjust mem_limit and cpus to machine
# mem_limit: 12G
# cpus: 4
ulimits:
nofile:
soft: 262144
hard: 262144
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:8123/ping"]
interval: 1s
timeout: 1s
retries: 30

postgres:
image: postgres:16-alpine
Expand Down Expand Up @@ -101,8 +101,8 @@ services:
volumes:
redis:
driver: local
# clickhouse:
# driver: local
clickhouse:
driver: local
postgres:
driver: local
rabbitmq:
Expand Down
Loading
Loading