-
Notifications
You must be signed in to change notification settings - Fork 22
/
docker-compose.yml
34 lines (31 loc) · 1.04 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
version: "3"
services:
jupyterlab:
# image: ghcr.io/maastrichtu-ids/jupyterlab:latest
build:
context: .
dockerfile: Dockerfile
# dockerfile: gpu.dockerfile
# args:
# NVIDIA_IMAGE: nvcr.io/nvidia/tensorflow:21.11-tf2-py3
user: root
# user: "1000"
# user: ${UID}
ports:
- 8888:8888
# volumes:
# Share volumes for jupyterlab and openrefine:
# - ./data/workspace:/workspace
# - ./data/work:/home/jovyan/work
# - ./data/openrefine:/home/jovyan/openrefine
# Share your local nanopub keys to login auto with the Nanobench (experimental)
# - ${HOME}/.nanopub:/home/jovyan/.nanopub
## Without password:
# command: "--ServerApp.token=''"
environment:
- GRANT_SUDO=yes
## With password:
- JUPYTER_TOKEN=password
## Download repo:
# - GIT_URL=https://github.com/MaastrichtU-IDS/dsri-demo
# entrypoint: jupyter lab --allow-root --ip=0.0.0.0 --port=8888 --no-browser --config=/etc/jupyter/jupyter_notebook_config.py