-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
50 lines (46 loc) · 1.1 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
version: "3.9"
services:
jupyterlab:
image: jupyterlab:latest
container_name: jupyterlab
build:
context: services/jupyterlab/
dockerfile: Dockerfile
env_file:
- ./services/.env
volumes:
- ./services/jupyterlab/notebooks/:/opt/workspace/
- ./data/:/data/
ports:
- 8888:8888
# dremio:
# container_name: dremio
# image: dremio/dremio-oss:latest
# platform: linux/x86_64
# ports:
# - 9047:9047
# - 31010:31010
# - 32010:32010
nessie:
container_name: nessie
image: projectnessie/nessie
ports:
- 19120:19120
minio:
container_name: minio
image: minio/minio
ports:
- 9000:9000
- 9001:9001
env_file:
- ./services/.env
command: server /data --console-address ":9001"
volumes:
- ./minio_data:/data
init-minio:
container_name: minio-init
image: minio/mc
entrypoint: >
/bin/sh -c "mc config host add minio http://minio:9000 minio minio123; mc mb minio/lake"
depends_on:
- minio