https://github.com/radanalyticsio/jupyter-notebook-py2.7
https://github.com/radanalyticsio/jupyter-notebook-py2.7
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/radanalyticsio/jupyter-notebook-py2.7
- Owner: radanalyticsio
- Created: 2017-11-02T17:55:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-15T17:59:43.000Z (almost 8 years ago)
- Last Synced: 2025-04-10T21:16:03.939Z (about 1 year ago)
- Language: Dockerfile
- Size: 18.6 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://travis-ci.org/radanalyticsio/base-notebook)
[](https://hub.docker.com/r/radanalyticsio/base-notebook)
[](https://microbadger.com/images/radanalyticsio/base-notebook)
# jupyter-notebook-py2.7
This is a container image intended to make it easy to run Jupyter notebooks with Apache Spark on OpenShift. You can use it as-is (by adding it to a project), or you can use it as the basis for another image. In the latter case, you'll probably want to add some notebooks, data, and/or additional packages to the derived image.
## Usage
### As a standalone image
For your convenience, binary image builds are available from Docker Hub.
* Add the image `radanalyticsio/jupyter-notebook-py2.7` to an OpenShift project.
* Set `JUPYTER_NOTEBOOK_PASSWORD` in the pod environment to something you can remember (this step is optional but highly recommended; if you don't do this, you'll need to trawl the logs for an access token for your new notebook).
* Create a route to the pod.
### Deploy on openshift
```
oc new-app radanalyticsio/jupyter-notebook-py2.7 -e JUPYTER_NOTEBOOK_PASSWORD=developer
```
### As a base image
* As `nbuser` (uid 1011), add notebooks to `/notebooks` and data to `/data`.
* This process should be easier in the future; stay tuned!
## Credits
This image was initially based on [Graham Dumpleton's images](https://github.com/getwarped/jupyter-stacks), which have some additional functionality (notably s2i support) that we'd like to incorporate in the future.