Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
Jupyter Docker Stacks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Jupyter Docker Stacks
Commits
ef4c3045
Commit
ef4c3045
authored
Nov 29, 2017
by
Troels Schwarz-Linnet
Committed by
Peter Parente
Dec 29, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding info how to mount local directory into 'work' directory
parent
8a527c97
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
README.md
README.md
+3
-2
No files found.
README.md
View file @
ef4c3045
...
@@ -14,13 +14,14 @@ If you're familiar with Docker, have it configured, and know exactly what you'd
...
@@ -14,13 +14,14 @@ If you're familiar with Docker, have it configured, and know exactly what you'd
# -ti: pseudo-TTY+STDIN open.
# -ti: pseudo-TTY+STDIN open.
# -rm: remove the container on exit.
# -rm: remove the container on exit.
# -p: publish port to the host
# -p: publish port to the host
docker run -ti --rm -p 8888:8888 jupyter/<your desired stack>:<git-sha-tag>
docker run -ti --rm -p 8888:8888 jupyter/<your desired stack>:<git-sha-tag>
# And mount current directory into 'work' directory in image
docker run -ti --rm -p 8888:8888 -v "$PWD":/home/jovyan/work jupyter/<your desired stack>:<git-sha-tag>
# Bagkground mode:
# Bagkground mode:
# -d: detach, run container in background.
# -d: detach, run container in background.
# -P: Publish all exposed ports to random ports
# -P: Publish all exposed ports to random ports
docker run -d -P jupyter/<your desired stack>:<git-sha-tag>
docker run -d -P jupyter/<your desired stack>:<git-sha-tag>
```
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment