1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-22 03:12:58 +03:00
guide/scripts/ci-functions.sh
avele 0336942072
Frontend E2E tests (#404)
Frontend E2E tests
2019-10-29 00:54:54 +04:00

5 lines
178 B
Bash

function run_back() {
containerID=$(docker run -d -p 4400:4400 "quay.io/aelve/guide:$1--back")
until docker logs $containerID 2>&1 | grep -m 1 "API is running"; do :; done
}