-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
27 lines (27 loc) · 1020 Bytes
/
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
version: "3.7"
services:
jupyter-user:
image: 527538141574.dkr.ecr.eu-central-1.amazonaws.com/eoxhub-jupyterlab:2023.10-02-devel
#- BRAND=eurodatatriangle
environment:
- JUPYTER_ENABLE_LAB=yes
- BRAND=polartep
- HOME=/tmp
- NODE_OPTIONS=--openssl-legacy-provider # https://stackoverflow.com/questions/69394632/webpack-build-failing-with-err-ossl-evp-unsupported
ports:
- 8888:8888
volumes:
- .:/mnt
- ./shared:/home/jovyan/.shared
user: "1000"
command:
- "bash"
- "-c"
# - "/mnt/development_install.sh && /usr/local/bin/start-notebook.sh --NotebookApp.token=''"
- "jupyter lab --allow-root --NotebookApp.token='' --NotebookApp.ip='*'"
#command: ["/usr/local/bin/start-notebook.sh", "--watch", "--ContentsManager.allow_hidden=True"]
nginx:
image: nginx:1.17.8
network_mode: host
volumes:
- ./dev/nginx-conf.d:/etc/nginx/conf.d