9 lines
293 B
Bash
Executable File
9 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
ENV_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
source $ENV_DIR/bin/messages
|
|
|
|
infomsg "[dev-env]: Executing docker-compose build for dev-env"
|
|
docker compose -f "$ENV_DIR/docker/docker-compose.yml" build
|
|
echo ""
|
|
|
|
$ENV_DIR/script/foreachSystem/dcom build |