-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
91 lines (85 loc) · 1.95 KB
/
docker-compose.yaml
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
version: "3.9"
services:
jupyterlab:
image: jupyterlab:latest
container_name: jupyterlab_da
build:
context: services/jupyterlab/
dockerfile: Dockerfile
env_file:
- ./config/.env
volumes:
- ./volumes/jupyter/notebooks/:/opt/workspace/
- ./data/:/data/
ports:
- 8888:8888
networks:
- lakehouse_a3
dremio:
container_name: dremio_da
image: dremio/dremio-oss:24.2.6
platform: linux/x86_64
ports:
- 9047:9047
- 31010:31010
- 32010:32010
volumes:
- ./volumes/dremio/:/opt/dremio/data
networks:
- lakehouse_a3
nessie:
container_name: nessie_da
image: projectnessie/nessie:0.74.0
ports:
- 19120:19120
environment:
- NESSIE_VERSION_STORE_TYPE=JDBC
- QUARKUS_DATASOURCE_JDBC_URL=jdbc:postgresql://postgres:5432/lakehouse_a3
- QUARKUS_DATASOURCE_USERNAME=dashaqui
- QUARKUS_DATASOURCE_PASSWORD=dashaqui
depends_on:
- postgres
- pgadmin
networks:
- lakehouse_a3
minio:
container_name: minio_da
image: minio/minio
ports:
- 9000:9000
- 9001:9001
env_file:
- ./config/.env
volumes:
- ./volumes/minio/:/data
command: server /data --console-address ":9001"
networks:
- lakehouse_a3
postgres:
container_name: postgres_da
image: postgres:16
environment:
- POSTGRES_USER=dashaqui
- POSTGRES_PASSWORD=dashaqui
- POSTGRES_DB=lakehouse_a3
volumes:
- "./volumes/postgres:/var/lib/postgresql/data:rw"
ports:
- "5432:5432"
networks:
- lakehouse_a3
pgadmin:
container_name: pgadmin_da
image: dpage/pgadmin4
environment:
- PGADMIN_DEFAULT_EMAIL=dashaqui@dashaqui.com
- PGADMIN_DEFAULT_PASSWORD=dashaqui
volumes:
- "./volumes/pg_admin:/var/lib/pgadmin:rw"
ports:
- "8070:80"
networks:
- lakehouse_a3
networks:
lakehouse_a3:
driver: bridge