Remove unverified support for podman.
This commit is contained in:
@@ -67,15 +67,12 @@ if [ -z "$VOLUME_NAME" ]; then
|
||||
fi
|
||||
|
||||
# Find container runtime
|
||||
if command -v podman &> /dev/null; then
|
||||
CMD="podman"
|
||||
EXTRA_ARGS+=("--hostname $(hostname -s)")
|
||||
if command -v container &> /dev/null; then
|
||||
# Apple container command line tool
|
||||
CMD="container"
|
||||
elif command -v docker &> /dev/null; then
|
||||
CMD="docker"
|
||||
EXTRA_ARGS+=("--hostname $(hostname -s)")
|
||||
elif command -v container &> /dev/null; then
|
||||
# Apple container command line tool
|
||||
CMD="container"
|
||||
else
|
||||
echo "Error: No usable container runtime was found." >&2
|
||||
exit 1
|
||||
|
||||
Reference in New Issue
Block a user