generated from developer-advocacy-dremio/apache-iceberg-env-template
-
Notifications
You must be signed in to change notification settings - Fork 138
/
docker-compose.yml
64 lines (62 loc) · 1.47 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
###########################################
# Notebook - Iceberg - Nessie Setup
###########################################
version: "3"
services:
# Spark Notebook Server
notebook:
image: alexmerced/spark33-notebook
container_name: notebook
networks:
iceberg:
volumes:
- ./warehouse:/home/docker/warehouse
- ./notebooks:/home/docker/notebooks
- ./datasets:/home/docker/datasets
environment:
- AWS_ACCESS_KEY_ID=admin
- AWS_SECRET_ACCESS_KEY=password
- AWS_REGION=us-east-1
- AWS_DEFAULT_REGION=us-east-1
ports:
- 8888:8888
- 8080:8080
- 10000:10000
- 10001:10001
# Nessie Catalog Server Using In-Memory Store
nessie:
image: projectnessie/nessie:0.67.0
container_name: nessie
networks:
iceberg:
ports:
- 19120:19120
# Minio Storage Server
minio:
image: minio/minio:RELEASE.2023-07-21T21-12-44Z
container_name: minio
environment:
- MINIO_ROOT_USER=admin
- MINIO_ROOT_PASSWORD=password
- MINIO_DOMAIN=storage
- MINIO_REGION_NAME=us-east-1
- MINIO_REGION=us-east-1
networks:
iceberg:
ports:
- 9001:9001
- 9000:9000
command: ["server", "/data", "--console-address", ":9001"]
# Dremio
dremio:
platform: linux/x86_64
image: dremio/dremio-oss:latest
ports:
- 9047:9047
- 31010:31010
- 32010:32010
container_name: dremio
networks:
iceberg:
networks:
iceberg: