10 lines
282 B
Bash
10 lines
282 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
echo "ThreeGate CORE placeholder container is running."
|
|
echo "Role: ${THREEGATE_ROLE:-core}"
|
|
echo "Policies mounted at: /srv/threegate/policy (should be read-only)"
|
|
echo "This image does not execute tools or access the network."
|
|
echo "Sleeping..."
|
|
sleep infinity
|