Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/annefou/docker-pyspark-jupyter-notebook
https://github.com/annefou/docker-pyspark-jupyter-notebook
Last synced: about 24 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/annefou/docker-pyspark-jupyter-notebook
- Owner: annefou
- License: mit
- Created: 2017-01-14T07:56:22.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-20T07:57:14.000Z (almost 8 years ago)
- Last Synced: 2024-11-05T10:51:38.677Z (about 2 months ago)
- Language: JavaScript
- Size: 84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/bgruening/docker-jupyter-notebook.svg?branch=master)](https://travis-ci.org/bgruening/docker-jupyter-notebook)
[![Docker Repository on Quay](https://quay.io/repository/bgruening/docker-jupyter-notebook/status "Docker Repository on Quay")](https://quay.io/repository/bgruening/docker-jupyter-notebook)
[![DOI](https://zenodo.org/badge/5466/bgruening/docker-jupyter-notebook.svg)](https://zenodo.org/badge/latestdoi/5466/bgruening/docker-jupyter-notebook)Docker Jupyter Container
========================This [Jupyter](http://jupyter.org/) Docker container is used by the [Galaxy Project](https://galaxyproject.org/) and can be installed from the [docker.io index](https://registry.hub.docker.com/u/bgruening/docker-jupyter-notebook/).
```bash
docker pull bgruening/docker-jupyter-notebook
```Usage
=====* Build your own image and run it
[Docker](https://www.docker.com) is a pre-requirement for this project. You can build the container with:
```bash
docker build -t jupyter-notebook .
```
The build process can take some time, but if finished you can run your container with:
```bash
docker run -p 7777:8888 -i -t jupyter-notebook
```
and you will have a running [Jupyter Notebook](http://jupyter.org) instance on ``http://localhost:7777/ipython/``.* Run a pre-build image from docker registry
``docker run -p 7777:8888 bgruening/docker-jupyter-notebook ``
Environment Variables
=====================Some environment variables are made available to the user which will allow for configuring the behaviour of individual instances.
Variable | Use
------------------- | ---
`API_KEY` | Galaxy API Key with which to interface with Galaxy
`CORS_ORIGIN` | If the notebook is proxied, this is the URL the end-user will see when trying to access a notebook
`DEBUG` | Enable debugging mode, mostly for developers
`GALAXY_URL` | URL at which Galaxy is accessible
`GALAXY_WEB_PORT` | Port on which Galaxy is running, if applicable
`HISTORY_ID` | ID of current Galaxy History, used in easing the dataset upload/download process
`NOTEBOOK_PASSWORD` | Password with which to secure the notebook
`PROXY_PREFIX` | Prefix to URL which allows Galaxy proxy to share cookies with Galaxy itself.Authors
=======* Bjoern Gruening
* Eric RascheHistory
=======- v0.1: Initial public release
- with Julia, Bash, Python2/3, Ruby, Haskell and R kernelsLicence (MIT)
=============Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.