-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
76 lines (69 loc) · 1.66 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
version: "3.9"
services:
dremio:
image: dremio/dremio-oss:latest
ports:
- 9047:9047
- 31010:31010
- 32010:32010
container_name: dremio
networks:
iceberg_env:
ipv4_address: 172.18.0.2 # Choose a suitable IP address
minioserver:
image: minio/minio
ports:
- 9000:9000
- 9001:9001
environment:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
MINIO_ACCESS_KEY: MINIO_ROOT_USER
MINIO_SECRET_KEY: MINIO_ROOT_PASSWORD
container_name: minio
command: server /data --console-address ":9001"
networks:
iceberg_env:
ipv4_address: 172.18.0.3 # Choose a suitable IP address
spark-notebook:
image: alexmerced/spark33-notebook
ports:
- 8888:8888
env_file: .env
volumes:
- ./db/:/home/docker/db/
- ./spark.ipynb:/home/docker/spark.ipynb
container_name: spark-notebook
networks:
iceberg_env:
ipv4_address: 172.18.0.4 # Choose a suitable IP address
nessie:
image: projectnessie/nessie
container_name: nessie
ports:
- "19120:19120"
networks:
iceberg_env:
ipv4_address: 172.18.0.5 # Choose a suitable IP address
superset:
build:
context: ./superset
dockerfile: dockerfile
container_name: superset
environment:
- ADMIN_USERNAME=admin
- ADMIN_PASSWORD=admin
ports:
- '8088:8088'
volumes:
- ./db/:/home/docker/db/
networks:
iceberg_env:
ipv4_address: 172.18.0.6
networks:
iceberg_env:
driver: bridge
ipam:
config:
- subnet: 172.18.0.0/16