not really known
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
J. Fernando Sánchez 85eab8aacc Upgrade to 1.7
* Pip install from submodule instead of git
* Updated README
* JPY_COOKIE_SECRET
* DATASET (Read only) and common (Write) folders
8 years ago
dockerspawner@f0ea6d065c Upgrade to 1.7 8 years ago
oauthenticator@fb38f60a56 Upgrade to 1.7 8 years ago
ssl First commit 8 years ago
.dockerignore Simplified spawner, added GitLab/OAuth 8 years ago
.gitignore Simplified spawner, added GitLab/OAuth 8 years ago
.gitmodules Upgrade to 1.7 8 years ago
Dockerfile Upgrade to 1.7 8 years ago
Makefile Simplified spawner, added GitLab/OAuth 8 years ago
README.md Upgrade to 1.7 8 years ago
VERSION Upgrade to 1.7 8 years ago
env First commit 8 years ago
jupyterhub_config.py Upgrade to 1.7 8 years ago

README.md

OAuthenticator

Example of running JupyterHub with GitHub OAuth for authentication.

Variables

General variables

ADMINS=balkian,oaraque
OAUTH_CALLBACK_URL=http://hub.cluster.gsi.dit.upm.es/hub/oauth_callback
HOST_HOMEDIR=/mnt/home/{username} # {username} will be replaced by the actual OAuth user

Gitlab variables:

GITLAB_HOST=https://lab.cluster.gsi.dit.upm.es/
GITLAB_CLIENT_ID=TheMaxiID
GITLAB_CLIENT_SECRET=TheMaxiSecret
OAUTH_CLASS=oauthenticator.gitlab.GitLabOAuthenticator 
DATASETS_DIR=/home/datasets # READ ONLY
COMMON_DIR=/home/common # To share files between users

GitHub variables:

GITHUB_CLIENT_ID=GHId
GITHUB_CLIENT_SECRET=GHSecret
OAUTH_CLASS=oauthenticator.github.GitHubOAuthenticator 

build

Build the container with:

make build

Alternatively:

docker build -t gsiupm/jupyter-oauth:testing .

ssl

To run the server on HTTPS, put your ssl key and cert in ssl/ssl.key and ssl/ssl.cert.

run

Add your oauth client id, client secret, and callback URL to your env file (i.e. .env). Once you have built the container, you can run it with:

make run

Alternatively:

docker run -it -p 8000:8000 --env-file=env gsiupm/jupyter-oauth:testing

Which will run the Jupyter server.