Skip to content
Snippets Groups Projects
Commit 94b23033 authored by Steffen Vogel's avatar Steffen Vogel :santa_tone2:
Browse files

do not mount home dir to avoid issues with user-wide installed python/conda packages

parent 50940968
Branches master
No related tags found
No related merge requests found
......@@ -21,7 +21,10 @@ If you happen to have Docker installed, you can start a local dockerized Jupyter
```bash
# Navigate to your local clone of this repo
cd path/to/example-profile
# Note: Adjust this path to your local environment
WORKDIR=/home/stv0g/example-profile
cd ${WORKDIR}
# Login to the RWTH GitLab Docker registry
# (required for pulling the base image)
......@@ -31,7 +34,7 @@ docker login registry.git.rwth-aachen.de
docker build --tag jupyter-example-profile .
# Run the Docker image
docker run --name='jupyter-example-profile' --rm --interactive --tty --publish 8888:8888 --volume ${HOME}:/home/jovyan jupyter-example-profile
docker run --name='jupyter-example-profile' --rm --interactive --tty --publish 8888:8888 --volume ${WORKDIR}:/home/jovyan jupyter-example-profile
```
Copy and paste the displayed link to your favorite browser.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment