Page MenuHomeDevCentral

init-container
No OneTemporary

init-container

#!/bin/sh
if [ ! -f .initialized ]; then
# Container is initialized according the environment variables
# passed to the container to setup the application.
/usr/local/bin/setup-bugzilla
EXIT_CODE=$?
if [ $EXIT_CODE -eq 0 ]; then
touch .initialized
else
exit $EXIT_CODE
fi
fi
/usr/sbin/httpd -DFOREGROUND

File Metadata

Mime Type
text/x-shellscript
Expires
Sun, Oct 12, 05:02 (1 h, 21 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3062196
Default Alt Text
init-container (352 B)

Event Timeline