dev-env/up
2024-12-21 03:19:46 +01:00

15 lines
408 B
Bash
Executable File

#!/bin/bash
ENV_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
source $ENV_DIR/bin/denv_msg
denv_info_msg "Executing up -d dev-env"
docker compose -f "$ENV_DIR/docker/docker-compose.yml" up -d
echo ""
$ENV_DIR/script/foreachSystem/dcom up -d
if [[ ! -f "$ENV_DIR/var/.firstRun" ]] ; then
$ENV_DIR/script/foreachSystem/runScript firstRun
touch "$ENV_DIR/var/.firstRun"
fi