-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
82 lines (77 loc) · 1.83 KB
/
docker-compose.yml
File metadata and controls
82 lines (77 loc) · 1.83 KB
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
services:
postgres:
image: postgres:16
container_name: postgres
restart: unless-stopped
ports:
- "5432:5432"
environment:
POSTGRES_USER: lakedev
POSTGRES_PASSWORD: lakedev
POSTGRES_DB: lakedev
volumes:
- pgdata:/var/lib/postgresql/data
clickhouse:
image: clickhouse/clickhouse-server:25.12
container_name: clickhouse
restart: unless-stopped
ports:
- "8123:8123" # HTTP interface
- "9100:9000" # Native protocol
environment:
CLICKHOUSE_DB: default
CLICKHOUSE_USER: default
CLICKHOUSE_PASSWORD: ""
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: 1
ulimits:
nofile:
soft: 262144
hard: 262144
volumes:
- clickhouse-data:/var/lib/clickhouse
- clickhouse-logs:/var/log/clickhouse-server
neo4j:
image: neo4j:5-community
container_name: neo4j
restart: unless-stopped
ports:
- "7474:7474" # Browser
- "7687:7687" # Bolt protocol
environment:
NEO4J_AUTH: neo4j/password
NEO4J_PLUGINS: '["apoc"]'
NEO4J_dbms_security_procedures_unrestricted: apoc.*
volumes:
- neo4j-data:/data
- neo4j-logs:/logs
temporal:
image: temporalio/auto-setup:latest
container_name: temporal
restart: unless-stopped
ports:
- "7233:7233"
environment:
DB: postgres12
DB_PORT: 5432
POSTGRES_USER: lakedev
POSTGRES_PWD: lakedev
POSTGRES_SEEDS: postgres
DEFAULT_NAMESPACE_RETENTION: 24h
depends_on:
- postgres
temporal-ui:
image: temporalio/ui:latest
container_name: temporal-ui
restart: unless-stopped
ports:
- "8233:8080"
environment:
TEMPORAL_ADDRESS: temporal:7233
depends_on:
- temporal
volumes:
pgdata:
clickhouse-data:
clickhouse-logs:
neo4j-data:
neo4j-logs: