Files
nginx-egg/entrypoint.sh
2025-10-11 14:20:03 +02:00

11 lines
234 B
Bash

#!/bin/bash
sleep 1
cd /home/container
# Replace Startup Variables
MODIFIED_STARTUP=`eval echo $(echo ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')`
echo ":/home/container$ ${MODIFIED_STARTUP}"
# Run the Server
${MODIFIED_STARTUP}