Files
nginx-egg/entrypoint.sh

11 lines
234 B
Bash
Raw Permalink Normal View History

2025-10-11 14:20:03 +02:00
#!/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}