api-testing/e2e/start.sh

12 lines
214 B
Bash
Executable File

#!/bin/bash
file=$1
if [ "$file" == "" ]
then
file=compose.yaml
fi
docker compose version
docker compose -f "$file" down
docker compose -f "$file" up --build testing --exit-code-from testing --remove-orphans