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
839e8307
Commit
839e8307
authored
May 18, 2016
by
Peter Parente
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename to base-notebook
(c) Copyright IBM Corp. 2016
parent
b9ff1d25
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
8 additions
and
8 deletions
+8
-8
Makefile
Makefile
+1
-1
base-notebook/.dockerignore
base-notebook/.dockerignore
+0
-0
base-notebook/Dockerfile
base-notebook/Dockerfile
+0
-0
base-notebook/README.md
base-notebook/README.md
+5
-5
base-notebook/jupyter_notebook_config.py
base-notebook/jupyter_notebook_config.py
+0
-0
base-notebook/start-notebook.sh
base-notebook/start-notebook.sh
+0
-0
base-notebook/start-singleuser.sh
base-notebook/start-singleuser.sh
+0
-0
minimal-notebook/Dockerfile
minimal-notebook/Dockerfile
+1
-1
minimal-notebook/README.md
minimal-notebook/README.md
+1
-1
No files found.
Makefile
View file @
839e8307
...
...
@@ -6,7 +6,7 @@
OWNER
:=
jupyter
# need to list these manually because there's a dependency tree
ALL_STACKS
:=
minimal-kernel
\
tiny
-notebook
\
base
-notebook
\
minimal-notebook
\
r-notebook
\
scipy-notebook
\
...
...
tiny
-notebook/.dockerignore
→
base
-notebook/.dockerignore
View file @
839e8307
File moved
tiny
-notebook/Dockerfile
→
base
-notebook/Dockerfile
View file @
839e8307
File moved
tiny
-notebook/README.md
→
base
-notebook/README.md
View file @
839e8307




#
Tiny
Jupyter Notebook Stack
#
Base
Jupyter Notebook Stack
Small base image for defining your own stack
## What it Gives You
*
Minimally-functional Jupyter Notebook 4.2.x
*
C
onda Python 3.x
*
Minimally-functional Jupyter Notebook 4.2.x
(e.g., no pandoc for document conversion)
*
Minic
onda Python 3.x
*
No preinstalled scientific computing packages
*
Unprivileged user
`jovyan`
(uid=1000, configurable, see options) in group
`users`
(gid=100) with ownership over
`/home/jovyan`
and
`/opt/conda`
*
[
tini
](
https://github.com/krallin/tini
)
as the container entrypoint and
[
start-notebook.sh
](
./start-notebook.sh
)
as the default command
...
...
@@ -19,7 +19,7 @@ Small base image for defining your own stack
The following command starts a container with the Notebook server listening for HTTP connections on port 8888 without authentication configured.
```
docker run -d -p 8888:8888 jupyter/
tiny
-notebook
docker run -d -p 8888:8888 jupyter/
base
-notebook
```
## Notebook Options
...
...
tiny
-notebook/jupyter_notebook_config.py
→
base
-notebook/jupyter_notebook_config.py
View file @
839e8307
File moved
tiny
-notebook/start-notebook.sh
→
base
-notebook/start-notebook.sh
View file @
839e8307
File moved
tiny
-notebook/start-singleuser.sh
→
base
-notebook/start-singleuser.sh
View file @
839e8307
File moved
minimal-notebook/Dockerfile
View file @
839e8307
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
FROM
jupyter/
tiny
-notebook
FROM
jupyter/
base
-notebook
MAINTAINER
Jupyter Project <jupyter@googlegroups.com>
...
...
minimal-notebook/README.md
View file @
839e8307
...
...
@@ -7,7 +7,7 @@ Small image for working in the notebook and installing your own libraries
## What it Gives You
*
Fully-functional Jupyter Notebook 4.2.x
*
C
onda Python 3.x
*
Minic
onda Python 3.x
*
No preinstalled scientific computing packages
*
Unprivileged user
`jovyan`
(uid=1000, configurable, see options) in group
`users`
(gid=100) with ownership over
`/home/jovyan`
and
`/opt/conda`
*
[
tini
](
https://github.com/krallin/tini
)
as the container entrypoint and
[
start-notebook.sh
](
./start-notebook.sh
)
as the default command
...
...
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