mirror of
https://github.com/stellarshenson/stellars-jupyterhub-ds.git
synced 2026-03-07 13:40:28 +00:00
11 lines
197 B
Bash
Executable File
11 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
CURRENT_FILE=`readlink -f $0`
|
|
CURRENT_DIR=`dirname $CURRENT_FILE`
|
|
cd $CURRENT_DIR
|
|
|
|
docker compose --env-file ../.env \
|
|
-f ../compose.yml \
|
|
up --no-recreate --no-build -d
|
|
|
|
# EOF
|