dev-env/up
2025-01-02 03:02:06 +01:00

18 lines
405 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 "[dev-env]: up -d"
docker compose -f "$ENV_DIR/docker/docker-compose.yml" up -d
echo ""
$ENV_DIR/script/foreachSystem/dcom up -d
if [[ ! -f "$ENV_DIR/.firstRun" ]] ; then
$ENV_DIR/script/foreachSystem/runScript firstRun
touch "$ENV_DIR/.firstRun"
fi
docker ps