Update versions.json
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 35s

This commit is contained in:
Your Name
2025-09-06 14:17:56 +12:00
parent 20a3790834
commit 8e6b00bfee
12 changed files with 564 additions and 0 deletions

14
cloudflare-tunnel/logs.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# shellcheck disable=SC1091
source "${AGENT_PATH}/common.sh"
_check_required_env_vars "CONTAINER_NAME"
if ! _is_container_exists "$CONTAINER_NAME"; then
echo "Container $CONTAINER_NAME does not exist"
exit 1
fi
# Show logs with follow by default
echo "Showing logs for Cloudflare Tunnel (Ctrl+C to exit)..."
echo "======================================================="
docker logs -f "$CONTAINER_NAME" 2>&1