https://github.com/robinl/jupyterlab_docker
https://github.com/robinl/jupyterlab_docker
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/robinl/jupyterlab_docker
- Owner: RobinL
- License: mit
- Created: 2017-10-22T11:24:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-08T20:41:12.000Z (over 8 years ago)
- Last Synced: 2025-06-19T04:07:37.614Z (12 months ago)
- Language: Jupyter Notebook
- Size: 1.21 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# analytics-platform-jupyter-notebook
Jupyter Notebook Docker image for Analytics Platform
For jupyter lab:
```
docker run -d -p 8888:8888 jl start.sh jupyter lab --NotebookApp.token=''
```
For Jupyter Notebook:
```
docker run -d -p 8889:8888 jl start-notebook.sh --NotebookApp.token=''
```
```
docker kill $(docker ps --filter ancestor=jl -q)
```
### About Jupyter Notebook
From [Jupter](http://jupyter.org):
> The Jupyter Notebook is a web application that allows you to create and share documents that contain live code, equations,
> visualizations and explanatory text. Uses include: data cleaning and transformation, numerical simulation, statistical
> modeling, machine learning and much more."
### Docker image
This docker image is based on the [jupyter/datascience-notebook image](https://github.com/jupyter/docker-stacks/blob/master/datascience-notebook/README.md#notebook-options). See
It adds Anaconda and Jupyter dashboard.
**NOTE**: There is a page with recipes in the docker-stacks repository. This may be useful, https://github.com/jupyter/docker-stacks/wiki/Docker-Recipes
### Disabling authentication
In order to disable the authentication you can run this container as follows:
$ docker run -d -p 8888:8888 jupyter/datascience-notebook start-notebook.sh --NotebookApp.token=''
### Known issues
- This image is a work in progress, you'll currently get a "Dead kernel" error in Jupyter notebook ([this issue may be related](https://github.com/jupyter/docker-stacks/issues/337))
- The image creates a 'jovyan' user with UID 1000, we'll need to figure it out how this will work with the NFS home (rename/change user UID?)
- anaconda/jupyter dashboard are installed as this user, this may need to change