forked from FAU-DLM/GPU-Jupyterhub
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env
58 lines (41 loc) · 1.83 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# Use this file to set default values for environment variables specified in
# docker-compose configuration file. docker-compose will substitute these
# values for environment variables in the configuration file IF the variables
# are not set in the shell environment.
# To override these values, set the shell environment variables.
JUPYTERHUB_VERSION=1.0.0
# Name of Docker machine
DOCKER_MACHINE_NAME=jupyterhub
# Name of Docker network
DOCKER_NETWORK_NAME=jupyterhub-network
# the local image we use, after pinning jupyterhub version
LOCAL_NOTEBOOK_IMAGE=hub-deep-learning-notebook-gpu
# Notebook directory in the container.
# This directory is stored as a docker volume for each user
DOCKER_NOTEBOOK_DIR=/home/Deep_Learner/work
DOCKER_SHARED_DATA_DIR=/home/Deep_Learner/data
# Docker run command to use when spawning single-user containers
DOCKER_SPAWN_CMD=start-singleuser.sh
# Name of JupyterHub container data volume
DATA_VOLUME_HOST=jupyterhub-data
# Data volume container mount point
DATA_VOLUME_CONTAINER=/data
# SSL KEY
# use the following command to generate a token, place it in line below:
# `openssl rand -hex 32`
CONFIGPROXY_AUTH_TOKEN=
# Name of JupyterHub postgres database data volume
DB_VOLUME_HOST=jupyterhub-db-data
# Postgres volume container mount point
DB_VOLUME_CONTAINER=/var/lib/postgresql/data
# The name of the postgres database containing JupyterHub state
POSTGRES_DB=jupyterhub
# specify a password for the postgres database here, or do it using the secrets folder instead
POSTGRES_PASSWORD=
# define ssl cert locations
SSL_CERT=/srv/jupyterhub/ssl/jupyterhub.crt
SSL_KEY=/srv/jupyterhub/ssl/jupyterhub.key
# define the oauth callback url if you decide to use oauth
#OAUTH_CALLBACK_URL=https://jupyterhub/hub/oauth_callback