Commit 839e8307 authored by Peter Parente's avatar Peter Parente

Rename to base-notebook

(c) Copyright IBM Corp. 2016
parent b9ff1d25
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
OWNER:=jupyter OWNER:=jupyter
# need to list these manually because there's a dependency tree # need to list these manually because there's a dependency tree
ALL_STACKS:=minimal-kernel \ ALL_STACKS:=minimal-kernel \
tiny-notebook \ base-notebook \
minimal-notebook \ minimal-notebook \
r-notebook \ r-notebook \
scipy-notebook \ scipy-notebook \
......
![docker pulls](https://img.shields.io/docker/pulls/jupyter/tiny-notebook.svg) ![docker stars](https://img.shields.io/docker/stars/jupyter/tiny-notebook.svg) ![docker pulls](https://img.shields.io/docker/pulls/jupyter/base-notebook.svg) ![docker stars](https://img.shields.io/docker/stars/jupyter/base-notebook.svg)
# Tiny Jupyter Notebook Stack # Base Jupyter Notebook Stack
Small base image for defining your own stack Small base image for defining your own stack
## What it Gives You ## What it Gives You
* Minimally-functional Jupyter Notebook 4.2.x * Minimally-functional Jupyter Notebook 4.2.x (e.g., no pandoc for document conversion)
* Conda Python 3.x * Miniconda Python 3.x
* No preinstalled scientific computing packages * 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` * 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 * [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 ...@@ -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. 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 ## Notebook Options
......
# Copyright (c) Jupyter Development Team. # Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License. # Distributed under the terms of the Modified BSD License.
FROM jupyter/tiny-notebook FROM jupyter/base-notebook
MAINTAINER Jupyter Project <jupyter@googlegroups.com> MAINTAINER Jupyter Project <jupyter@googlegroups.com>
......
...@@ -7,7 +7,7 @@ Small image for working in the notebook and installing your own libraries ...@@ -7,7 +7,7 @@ Small image for working in the notebook and installing your own libraries
## What it Gives You ## What it Gives You
* Fully-functional Jupyter Notebook 4.2.x * Fully-functional Jupyter Notebook 4.2.x
* Conda Python 3.x * Miniconda Python 3.x
* No preinstalled scientific computing packages * 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` * 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 * [tini](https://github.com/krallin/tini) as the container entrypoint and [start-notebook.sh](./start-notebook.sh) as the default command
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment