Consolidated deployment scripts

This commit is contained in:
2025-10-11 14:25:03 -04:00
parent 7a1e0c822c
commit cf5d3d94ef
20 changed files with 101 additions and 81 deletions

View File

@@ -0,0 +1,7 @@
if [ -x "$(command -v docker)" ]; then
docker compose exec tam3-api /app/key.py list
elif [ -x "$(command -v podman)" ]; then
podman compose exec tam3-api /app/key.py list
else
echo "Neither Docker nor Podman are installed. Please install whichever you prefer and try again."
fi