Files
stellars-jupyterhub-ds/start.sh
2025-07-17 15:52:55 +02:00

12 lines
239 B
Bash
Executable File

#!/bin/sh
CURRENT_FILE=`readlink -f $0`
CURRENT_DIR=`dirname $CURRENT_FILE`
cd $CURRENT_DIR
# Run the command for when GPU is not available
docker compose --env-file .env \
-f compose.yml \
up --no-recreate --no-build -d
# EOF