mirror of
https://github.com/bokysan/docker-postfix.git
synced 2024-11-10 08:55:39 +08:00
9 lines
220 B
Bash
Executable file
9 lines
220 B
Bash
Executable file
#!/bin/sh
|
|
cd unit-tests
|
|
|
|
DOCKER_COMPOSE="docker-compose"
|
|
if docker --help | grep -q -F 'compose*'; then
|
|
DOCKER_COMPOSE="docker compose"
|
|
fi
|
|
|
|
$DOCKER_COMPOSE up --build --abort-on-container-exit --exit-code-from tests
|