*[Jupyter Kernel Gateway](https://github.com/jupyter-incubator/kernel_gateway) that spawns minimal Jupyter Python kernel
*[Jupyter Kernel Gateway](https://github.com/jupyter-incubator/kernel_gateway) that enables programmatic access to kernels
* No preinstalled scientific computing packages
* Unprivileged user `jovyan` (uid=1000, configurable, see options) in group `users` (gid=100) with ownership over `/home/jovyan`
*[tini](https://github.com/krallin/tini) as the container entrypoint
* Options for Port and Ip address
## Basic Use
...
...
@@ -16,9 +13,6 @@ The following command starts a container with the Kernel Gateway server listenin
docker run -d -p 8888:8888 jupyter/minimal-kernel
```
## Docker Options
You may customize the execution of the Docker container and the Notebook server it contains with the following optional arguments.
*`-e INTERFACE=10.10.10.10` - Configures Kernel Gateway to listen on the given interface. Defaults to '0.0.0.0', all interfaces, which is appropriate when running using default bridged Docker networking. When using Docker's `--net=host`, you may wish to use this option to specify a particular network interface.
*`-e PORT=8888` - Configures Kernel Gateway to listen on the given port. Defaults to 8888, which is the port exposed within the Dockerfile for the image. When using Docker's `--net=host`, you may wish to use this option to specify a particular port.
\ No newline at end of file
## Docker Options and More Information
* For more information on the Kernel Gateway and its configuration options see the