-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.env
73 lines (51 loc) · 2.37 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# 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=latest
# Name of Docker machine
#DOCKER_MACHINE_NAME=jupyterhub
# Name of Docker network
DOCKER_NETWORK_NAME=jupyterhub-network
DOCKER_NOTEBOOK_IMAGE=digitalanatomist/gpu-addon-notebook-cuda10.0-ubuntu18.04
# Notebook directory in the container.
# This will be /home/Deep_Learner/work if the default
# This directory is stored as a docker volume for each user
DOCKER_NOTEBOOK_DIR=/home/Deep_Learner/private/local/
#This directory is where all the personal folders of users are (host_side) within a network associated storage folder (slower hdd)
HOST_PERSONAL_NETWORK_FOLDER=/media/share/Jupyterhubstorage/
##This the shared usage storage (such as ml associated data)
HOST_SHARED_NETWORK_FOLDER=/media/share/shared/
#This is the actual folder within the docker container of a single user
DOCKER_PERSONAL_NETWORK_FOLDER=/home/Deep_Learner/private/network/
#This is the schred data folder within the docker container of all users
DOCKER_SHARED_NETWORK_FOLDER=/home/Deep_Learner/shared
# 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
# Data volume container mount point
DATA_VOLUME_CONTAINER=/data
# 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
# SSL KEY
CONFIGPROXY_AUTH_TOKEN=#at secrets/cookie.env
# OAUTH
GITHUB_CLIENT_SECRET=#at secrets/oauth.env
GITHUB_CLIENT_ID=#at secrets/oauth.env
OAUTH_CALLBACK_URL=#at secrets/oauth.env
GOOGLE_CLIENT_ID=#at secrets/oauth.env
GOOGLE_CLIENT_SECRET=#at secrets/oauth.env
# Postgres Database Password
POSTGRES_PASSWORD=#at secrets/postgres.env
# FTP server Password
DOCKER_FTP_PASSWD=# at secrets/ftpsecrets.env