-
Notifications
You must be signed in to change notification settings - Fork 740
/
clickhouse-cluster-quickstart.docker-compose.yml
95 lines (88 loc) · 2.45 KB
/
clickhouse-cluster-quickstart.docker-compose.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
version: "3.7"
services:
bb:
image: bytebase/bytebase:${BB_VERSION}
init: true
container_name: bytebase
restart: always
ports:
- 8080:8080
# # Uncomment the following lines to persist data
# volumes:
# - ~/.bytebase/data:/var/opt/bytebase
command: ["--data", "/var/opt/bytebase", "--port", "8080"]
networks: [clickhouse-network]
# Clickhouse cluster
zookeeper:
image: zookeeper
networks: [clickhouse-network]
clickhouse01:
image: yandex/clickhouse-server
platform: linux/amd64
ulimits:
nofile:
hard: 262144
soft: 262144
ports:
- 9001:9000
volumes:
- ./clickhouse/users.xml:/etc/clickhouse-server/users.xml
- ./clickhouse-cluster/clickhouse01.config.xml:/etc/clickhouse-server/config.xml
- ./clickhouse-cluster/test_schema:/docker-entrypoint-initdb.d
networks: [clickhouse-network]
depends_on:
- zookeeper
clickhouse02:
image: yandex/clickhouse-server
platform: linux/amd64
ulimits:
nofile:
hard: 262144
soft: 262144
ports:
- 9002:9000
volumes:
- ./clickhouse/users.xml:/etc/clickhouse-server/users.xml
- ./clickhouse-cluster/clickhouse02.config.xml:/etc/clickhouse-server/config.xml
- ./clickhouse-cluster/test_schema:/docker-entrypoint-initdb.d
networks: [clickhouse-network]
depends_on:
- zookeeper
clickhouse03:
image: yandex/clickhouse-server
platform: linux/amd64
ulimits:
nofile:
hard: 262144
soft: 262144
ports:
- 9003:9000
volumes:
- ./clickhouse/users.xml:/etc/clickhouse-server/users.xml
- ./clickhouse-cluster/clickhouse03.config.xml:/etc/clickhouse-server/config.xml
- ./clickhouse-cluster/test_schema:/docker-entrypoint-initdb.d
networks: [clickhouse-network]
depends_on:
- zookeeper
clickhouse04:
image: yandex/clickhouse-server
platform: linux/amd64
ulimits:
nofile:
hard: 262144
soft: 262144
ports:
- 9004:9000
volumes:
- ./clickhouse/users.xml:/etc/clickhouse-server/users.xml
- ./clickhouse-cluster/clickhouse04.config.xml:/etc/clickhouse-server/config.xml
- ./clickhouse-cluster/test_schema:/docker-entrypoint-initdb.d
networks: [clickhouse-network]
depends_on:
- zookeeper
networks:
clickhouse-network:
name: clickhouse-network
ipam:
config:
- subnet: 172.23.0.0/24