Updated docker compose usage

Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
Janos SUTO 2023-10-16 18:26:43 +02:00
parent 197f09ed47
commit 91b3c73b02

View File

@ -27,13 +27,13 @@ launch_containers() {
destroy_containers
log "running docker-compose up"
log "running docker compose up"
docker-compose -f "$composefile" up -d
docker compose -f "$composefile" up -d
wait_until_container_is_healthy "piler1"
docker-compose -f "$composefile" ps
docker compose -f "$composefile" ps
popd
}