-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
45 lines (40 loc) · 928 Bytes
/
docker-compose-dev.yml
File metadata and controls
45 lines (40 loc) · 928 Bytes
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
version: "3.8"
services:
db:
image: yandex/clickhouse-server
ports:
- "8123:8123"
- "9000:9000"
- "9009:9009"
ulimits:
nproc: 65535
nofile:
soft: 262144
hard: 262144
yandex:
build: .
ports:
- "9091:9090"
environment:
CLICKHOUSE_URL: "db"
UBIC_URL: "http://host.docker.internal:8888"
AGGR_NAME: "Yandex"
AGGR_UUID: "777aaaaa-1af0-489e-b761-d40344c12e70"
city:
build: .
ports:
- "9092:9090"
environment:
CLICKHOUSE_URL: "db"
UBIC_URL: "http://host.docker.internal:8888"
AGGR_NAME: "City"
AGGR_UUID: "888aaaaa-1af0-489e-b761-d40344c12e70"
gett:
build: .
ports:
- "9093:9090"
environment:
CLICKHOUSE_URL: "db"
UBIC_URL: "http://host.docker.internal:8888"
AGGR_NAME: "Gett"
AGGR_UUID: "999aaaaa-1af0-489e-b761-d40344c12e70"