voila/.env.sample

33 lines
900 B
Plaintext
Raw Normal View History

2023-01-04 23:33:48 +00:00
TYPE=voila
DOMAIN=voila.example.com
## Domain aliases
#EXTRA_DOMAINS=', `www.voila.example.com`'
LETS_ENCRYPT_ENV=production
2023-01-05 00:07:49 +00:00
2023-01-05 00:22:04 +00:00
COMPOSE_FILE="compose.yml"
# Single Sign-On using traefik-forward-auth
#TFA_MIDDLEWARE_NAME="keycloak"
#COMPOSE_FILE="$COMPOSE_FILE:compose.sso.yml"
2023-01-05 04:30:08 +00:00
# Password Sign-On using traefik http password
# Use htpasswd to generate the passwords for the user list, then set the below variable to
# something like 'username:$$passwordhash', comma separated for multiple users.
#HTTP_BASIC_AUTH_PASSWORDS=
#COMPOSE_FILE="$COMPOSE_FILE:compose.basicauth.yml"
2023-01-05 00:07:49 +00:00
# The voila version to pin to (can be overriden by requirements.txt)
VOILA_VERSION=0.4.0
2023-01-05 05:52:43 +00:00
IPYKERNEL_VERSION=6.19.4
NOTEBOOK_VERSION=6.5.2
2023-01-05 00:07:49 +00:00
# The directory to run voila from.
VOILA_DIRECTORY=/data
# Additional options to pass to voila.
VOILA_OPTIONS=''
# The requirements.txt path
REQUIREMENTS_PATH=/data/requirements.txt