Skip to content

Commit

Permalink
Fix inttests using docker-compose instead of docker compose (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
nemith authored Jan 2, 2025
1 parent b935754 commit 540d19c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions inttest/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export DOCKER_BUILDKIT := "1"

@list:
echo "Targets here will run a set of integration tests against vendor virtual "\
"images. Most of these are not publically avaiable and must have an "\
"images. Most of these are not publicly available and must have an "\
"account on the vendor website to download."
echo "See inttest/README.md for more information."
echo
Expand All @@ -22,17 +22,17 @@ all: csrx ceos confd netopeer2
csrx:
#!/usr/bin/env bash
[ -z "$CSRX_IMAGE" ] && echo "CSRX_IMAGE missing skipping test" && exit 0
docker-compose -f docker-compose.csrx.yml up {{ args }}
docker compose -f docker-compose.csrx.yml up {{ args }}
ceos:
#!/usr/bin/env bash
[ -z "$CEOS_IMAGE" ] && echo "CEOS_IMAGE missing skipping test" && exit 0
docker-compose -f docker-compose.ceos.yml up {{ args }}
docker compose -f docker-compose.ceos.yml up {{ args }}
confd:
#!/usr/bin/env bash
[ -z "$CONFD_IMAGE" ] && echo "CONFD_IMAGE missing skipping test" && exit 0
docker-compose -f docker-compose.confd.yml up {{ args }}
docker compose -f docker-compose.confd.yml up {{ args }}
netopeer2:
docker-compose -f docker-compose.netopeer2.yml up {{ args }}
docker compose -f docker-compose.netopeer2.yml up {{ args }}

0 comments on commit 540d19c

Please sign in to comment.