Skip to content
Permalink
a6b0d41fcc
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 25 lines (19 sloc) 607 Bytes
#!/bin/bash
if [[ "$SCRIPT_DIR" == "" ]]; then
echo "ERROR in ./scripts/config/load_env.sh: \$SCRIPT_DIR is undefined!"
exit 1
fi
BASE_DIR="$SCRIPT_DIR/.."
#######################################
# actual script
#######################################
# these are the default settings used by all scripts:
RUNTIME_DIR=runtime_data
###################################################
# export all these variables, so
# they can be referenced in the docker-compose.yaml
###################################################
set -a
source $SCRIPT_DIR/config/env.conf
set -a
# (stop exporting variables)