Initial commit

This commit is contained in:
2024-02-01 12:24:58 +01:00
commit dab8585fab
16 changed files with 1532 additions and 0 deletions

16
docker-compose-wrapper Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Path to script that will be executed before starts docker-compose
ENV_SCRIPT="./create-env.sh"
# Check script
if [ -x "$ENV_SCRIPT" ]; then
echo "executing $ENV_SCRIPT..."
$ENV_SCRIPT
else
echo "Error: $ENV_SCRIPT not found or not executable."
exit 1
fi
# Execute docker-compose with all parameters an sub commannds
docker-compose "$@"