Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Example Profile
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Noemi Christine Kremer
Example Profile
Commits
94b23033
Commit
94b23033
authored
4 years ago
by
Steffen Vogel
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+5
-2
5 additions, 2 deletions
README.md
with
5 additions
and
2 deletions
README.md
+
5
−
2
View file @
94b23033
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment