Skip to content

Commit

Permalink
switch from docker-compose to docker compose and
Browse files Browse the repository at this point in the history
stop installing docker-compose because that uninstalls runc

(cherry picked from commit 5bb9f0f)
  • Loading branch information
Habbie committed Sep 25, 2023
1 parent 6e00f2c commit 1aaf8a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions regression-tests.auth-py/runtests
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ fi
ignore="-I test_GSSTSIG.py"
if [ "${WITHKERBEROS}" = "YES" ]; then
ignore=""
(cd kerberos-server && docker-compose up --detach --build)
(cd kerberos-server && docker compose up --detach --build)
fi

nosetests --with-xunit $ignore $@
ret=$?

if [ "${WITHKERBEROS}" = "YES" ]; then
(cd kerberos-server && docker-compose stop || exit 0)
(cd kerberos-server && docker compose stop || exit 0)
fi
exit $ret
1 change: 0 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@
'curl',
'default-jre-headless',
'dnsutils',
'docker-compose',
'faketime',
'gawk',
'krb5-user',
Expand Down

0 comments on commit 1aaf8a2

Please sign in to comment.