Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jupyter-java
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Emmanuel Bruno
jupyter-java
Commits
beab40d6
Commit
beab40d6
authored
2 years ago
by
Emmanuel Bruno
Browse files
Options
Downloads
Patches
Plain Diff
adds a basic README
parent
da703f55
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+45
-0
45 additions, 0 deletions
README.md
with
45 additions
and
0 deletions
README.md
0 → 100644
+
45
−
0
View file @
beab40d6
# JupyterLab Base Image
**Test it on**
[

](https://mybinder.org/v2/gh/ebpro/notebook-qs-base/develop)
A base image for the Jupyter Lab ased on jupyter/minimal-notebook :
*
ZSH
*
TexLive
*
Code Server Web IDE
*
Jupyter Book
## Quickstart
```
bash
docker run
--rm
--name
jupyter-base-
${
PWD
##*/
}
\
--volume
data-
${
PWD
##*/
}
:/home/jovyan/work/
${
PWD
##*/
}
\
--publish
8888:8888
\
--env
NB_UID
=
$UID
\
brunoe/jupyter-base:develop start-notebook.sh
--notebook-dir
=
work/
${
PWD
##*/
}
```
## Host files and UIDs
```
bash
docker run
--rm
--name
jupyter-base-
${
PWD
##*/
}
\
--user
root
--volume
$PWD
:/home/jovyan/work/
${
PWD
##*/
}
\
--volume
/var/run/docker.sock:/var/run/docker.sock
\
--publish
8888:8888
\
--env
NB_UID
=
$UID
\
brunoe/jupyter-base:develop start-notebook.sh
--notebook-dir
=
work/
${
PWD
##*/
}
```
## With Docker support
```
bash
docker run
--rm
--name
jupyter-base-
${
PWD
##*/
}
\
--user
root
\
--privileged
=
true
\
--volume
$PWD
:/home/jovyan/work/
${
PWD
##*/
}
\
--volume
/var/run/docker.sock:/var/run/docker.sock
\
--publish
8888:8888
\
--env
NB_UID
=
$UID
\
brunoe/jupyter-base:develop start-notebook.sh
--notebook-dir
=
work/
${
PWD
##*/
}
```
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