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