Upgrade to 1.7

* Pip install from submodule instead of git
* Updated README
* JPY_COOKIE_SECRET
* DATASET (Read only) and common (Write) folders
master
J. Fernando Sánchez 7 years ago
parent 0bb2ea7963
commit 85eab8aacc

6
.gitmodules vendored

@ -0,0 +1,6 @@
[submodule "oauthenticator"]
path = oauthenticator
url = https://github.com/jupyter/oauthenticator.git
[submodule "dockerspawner"]
path = dockerspawner
url = https://github.com/jupyter/dockerspawner.git

@ -7,8 +7,10 @@ FROM jupyter/jupyterhub
MAINTAINER Project Jupyter <ipython-dev@scipy.org>
# Install oauthenticator from git
RUN pip install git+git://github.com/jupyter/oauthenticator.git
RUN pip install git+git://github.com/jupyter/dockerspawner.git
ADD oauthenticator /src/oauthenticator
ADD dockerspawner /src/dockerspawner
RUN pip install /src/oauthenticator
RUN pip install /src/dockerspawner
# Create oauthenticator directory and put necessary files in it
RUN mkdir /srv/oauthenticator

@ -3,29 +3,45 @@
Example of running [JupyterHub](https://github.com/jupyter/jupyterhub)
with [GitHub OAuth](https://developer.github.com/v3/oauth/) for authentication.
## setup
## Variables
Edit the file called `userlist` to include one GitHub user name per line.
If that user should be an admin (you!), add `admin` after a space.
For example:
### General variables
```
mal admin
zoe admin
wash
inara admin
kaylee
jayne
simon
river
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:
docker build -t jupyter/oauthenticator .
make build
Alternatively:
docker build -t gsiupm/jupyter-oauth:testing .
### ssl
@ -34,9 +50,13 @@ ssl/ssl.cert.
## run
Add your oauth client id, client secret, and callback URL to the `env file`.
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:
docker run -it -p 8000:8000 --env-file=env jupyter/oauthenticator
make run
Alternatively:
docker run -it -p 8000:8000 --env-file=env gsiupm/jupyter-oauth:testing
Which will run the Jupyter server.

@ -1 +1 @@
1.6
1.7

@ -0,0 +1 @@
Subproject commit f0ea6d065c8a6a2be3e1295e2e30ab17f312a273

@ -29,6 +29,16 @@ c.DockerSpawner.notebook_dir = notebook_dir
# notebook directory in the container
c.DockerSpawner.volumes = { HOME_FORMAT_STRING: notebook_dir }
common = os.environ.get('COMMON_DIR')
if common:
c.DockerSpawner.volumes[common] = join(notebook_dir, 'common')
dsdir = os.environ.get('DATASETS_DIR')
if dsdir:
c.DockerSpawner.read_only_volumes = { dsdir: join(notebook_dir, 'DATASETS')}
import socket
ips = ([ip for ip in socket.gethostbyname_ex(socket.gethostname())[2] if not ip.startswith("127.")][:1])
c.JupyterHub.hub_ip = ips[0]

@ -0,0 +1 @@
Subproject commit fb38f60a5611056653bedf7416dbc922394b7cf8
Loading…
Cancel
Save