updated env variables

This commit is contained in:
stellarshenson
2025-08-07 22:42:12 +02:00
parent 99713fc557
commit dccd14d6cc

View File

@@ -49,6 +49,8 @@ NETWORK_NAME = os.environ["DOCKER_NETWORK_NAME"]
# gpu support: 0 - disabled, 1 - enabled, 2 - autodetect
if ENABLE_GPU_SUPPORT == 2 and NVIDIA_DETECTED:
ENABLE_GPU_SUPPORT = 1 # means - gpu enabled
elif ENABLE_GPU_SUPPORT == 2 and not NVIDIA_DETECTED
ENABLE_GPU_SUPPORT = 0 # means - disable
# ensure that we are using SSL, it should be enabled by default
if ENABLE_JUPYTERHUB_SSL == 1: