forked from zsvoboda/ngods-stocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
85 lines (81 loc) · 1.82 KB
/
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
version: '3.9'
services:
aio:
build: aio/
container_name: aio
environment:
- AWS_ACCESS_KEY_ID=minio
- AWS_SECRET_ACCESS_KEY=minio123
- AWS_REGION=us-east-1
- PGDATA=/var/lib/postgresql/data/pgdata
- MINIO_ROOT_USER=minio
- MINIO_ROOT_PASSWORD=minio123
volumes:
- ./data/stage:/home/data/stage
- ./data/spark/notebooks:/home/iceberg/notebooks/notebooks
- ./projects/dagster:/opt/dagster/app/
- ./projects/dbt:/opt/dagster/dbt/
- ./data/minio:/data
ports:
- '8888:8888' # Spark notebook port
- '7077:7077' # Spark port
- '8061:8061' # Spark master web ui port
- '8062:8062' # Spark worker web ui port
- '10000:10000' # Thrift ODBC/JDBC port
- '18080:18080' # Spark history web ui port
- '3070:3070' # dagit
- '8060:8060' # trino
- '33306:3306' # mysql
- '9083:9083' # Metastore Thrift
- '5432:5432' # Postgres
- '9000:9000' # Minio
- '9001:9001' # Minio
networks:
ndsnet:
aliases:
- mariadb
- postgres
- spark
- dagster
- dbt
- trino
- metastore
- aio
- minio
command:
- notebook
cube:
image: cubejs/cube
container_name: cube
hostname: cube
volumes:
- ./conf/cube:/cube/conf
ports:
- 3000:3000
- 4000:4000
- 3245:3245
networks:
- ndsnet
depends_on:
- trino
- spark
- postgres
- mariadb
metabase:
container_name: metabase
depends_on:
- trino
- spark
- postgres
- cube
hostname: metabase
build: metabase/
volumes:
- ./conf/metabase:/conf
ports:
- 3030:3030
networks:
- ndsnet
networks:
ndsnet:
driver: bridge