11 lines
326 B
Bash
11 lines
326 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
echo "ThreeGate TOOL-EXEC placeholder container is running."
|
|
echo "Role: ${THREEGATE_ROLE:-tool-exec}"
|
|
echo "ERA backend: ${ERA_BACKEND:-<unset>}"
|
|
echo "Guest volumes enabled: ${AGENT_ENABLE_GUEST_VOLUMES:-0}"
|
|
echo "This image does not execute requests automatically yet."
|
|
echo "Sleeping..."
|
|
sleep infinity
|