-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
137 lines (126 loc) · 3.34 KB
/
docker-compose.yml
File metadata and controls
137 lines (126 loc) · 3.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
version: "3.8"
services:
antimatter:
image: app:react
command: npm start
build:
context: .
container_name: antimatter
restart: always
ports:
- 3000:3000
volumes:
- .:/antimatter
postgres:
image: postgres:9.6-alpine
container_name: postgres
restart: always
volumes:
- ./backend/postgres:/var/lib/postgresql/data/pgdata
environment:
PGDATA: /var/lib/postgresql/data/pgdata
POSTGRES_PASSWORD: UCDoCjYxCFWReZeyJjovrrfczXgvPnvB
redis:
image: redis:6.2.4-alpine
container_name: redis
restart: always
volumes:
- ./backend/redis:/data
clickhouse:
image: yandex/clickhouse-server
container_name: clickhouse
restart: always
ports:
- 8123:8123
- 9000:9000
volumes:
- ./backend/clickhouse:/var/lib/clickhouse
jitsu:
image: jitsucom/jitsu:latest
container_name: jitsu
restart: always
depends_on:
- redis
ports:
- 8000:8000
environment:
- REDIS_URL=redis://redis:6379
- UI_AUTH_REFRESH_SECRET=ULWBZyNfBeXPPVbwsEwgNVezsbjjyVdq
- UI_AUTH_ACCESS_SECRET=sNVPJZnQZLMpKXvVHfdHMnitNHsRmURC
- SERVER_ADMIN_TOKEN=sNVPJZnSIKLJUHFBVIURHZDUnitNHsRmURC
- CONFIGURATOR_ADMIN_TOKEN=salhfgLIARVUGiygdaLAGFRRLIGxnb
volumes:
- ./backend/jitsu/configurator:/home/configurator/data/logs
- ./backend/jitsu/events:/home/eventnative/data/logs/events
- ./backend/jitsu/login:/home/eventnative/data/logs
- ./backend/jitsu/login:/home/eventnative/data/airbyte
- workspace:/home/eventnative/data/airbyte
- /var/run/docker.sock:/var/run/docker.sock
tabix:
image: spoonest/clickhouse-tabix-web-client
restart: unless-stopped
links:
- clickhouse
ports:
- 8081:80
# VALUES:
# NAME: CH
# UserName: default
sqlpad:
image: sqlpad/sqlpad:latest
container_name: sqlpad
restart: always
ports:
- 3002:3000
volumes:
- ./backend/sqlpad:/var/lib/sqlpad
environment:
- SQLPAD_AUTH_DISABLED=true
- SQLPAD_AUTH_DISABLED_DEFAULT_ROLE=admin
- SQLPAD_USERPASS_AUTH_DISABLED=true
- SQLPAD_ADMIN_PASSWORD=5aWC9bWss2kZjr6MoowFokbPqrFEagts
- SQLPAD_ADMIN=example@example.com
jupyter:
image: jupyter/datascience-notebook
restart: unless-stopped
ports:
- 8888:8888
environment:
JUPYTER_TOKEN: easy #URL:PORT/?token=easy
NB_UID: 1000
NB_GID: 100
links:
- clickhouse
volumes:
- ./backend/jupyter-data-dir:/home/jovyan/work
- ./clickhouse_helper.py:/home/jovyan/work/clickhouse_helper.py
# for password using generate pwd hash IPython.lib.passwd()
# command: start-notebook.sh --NotebookApp.password='sha1:92557d72fa24:0bb69987c3b3c6218f466258ee0e5e2a87e34671'
cube:
image: cubejs/cube
restart: always
ports:
- 4000:4000
volumes:
- ./backend/cube:/cube/conf
environment:
- CUBEJS_DEV_MODE=true
trino:
image: trinodb/trino
container_name: trino
restart: always
ports:
- 8080:8080
metabase:
image: bjeanes/metabase-clickhouse
container_name: metabase
restart: always
ports:
- 3001:3000
volumes:
- ./backend/metabase:/metabase-data
environment:
- MB_DB_FILE=/metabase-data/metabase.db
volumes:
workspace:
name: jitsu_workspace