Files
tam3/deployment/client/client-load.sh

10 lines
280 B
Bash
Raw Normal View History

2025-10-11 15:09:04 -04:00
#!/bin/bash
if [ -x "$(command -v docker)" ]; then
docker load -i tam3-webclient.tar.gz
elif [ -x "$(command -v podman)" ]; then
podman load -i tam3-webclient.tar.gz
else
echo "Neither Docker nor Podman are installed. Please install whichever you prefer and try again."
exit 1
fi