forked from godatadriven/ducklake-blog-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
58 lines (55 loc) · 1.21 KB
/
compose.yml
File metadata and controls
58 lines (55 loc) · 1.21 KB
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
services:
uc:
build:
dockerfile: Dockerfile.uc
args:
UC_VERSION: 0.2.1
ALPINE_VERSION: "3.20"
ports:
- 8080:8080
volumes:
- shared-data:/app/unitycatalog
uc-ui:
build:
dockerfile: Dockerfile.ucui
args:
UC_HOST: http://uc:8080
UC_VERSION: 0.2.1
ALPINE_VERSION: "3.20"
ports:
- 3000:3000
depends_on:
- uc
jupyter:
user: root
build:
dockerfile: Dockerfile.jupyter
environment:
JUPYTER_TOKEN: ducklake
HOME: /home/ducklake
NB_USER: ducklake
NB_UID: 1008
NB_GID: 1011
CHOWN_HOME: 'yes'
CHOWN_HOME_OPTS: -R
LOCATION_PREFIX: /home/ducklake/data
UC_TOKEN: not-used
UC_ENDPOINT: http://uc:8080
UC_AWS_REGION: eu-west-1
JY_HOST_URL: http://localhost:8081
JY_DOCKER_HOST: http://uc:8080
ports:
- 8888:8888
depends_on:
- uc
volumes:
- shared-data:/app/unitycatalog
nginx: # (reverse proxy) Enables service on localhost running outside docker compose network to access UC Catalog API
build:
dockerfile: Dockerfile.nginx
ports:
- 8081:80
depends_on:
- uc
volumes:
shared-data: