19 lines
268 B
Plaintext
19 lines
268 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
# Env variable validation
|
|
VARS=( \
|
|
TZ
|
|
WEB_PORT
|
|
)
|
|
|
|
for i in "${VARS[@]}"; do
|
|
if [ -z ${!i+x} ]; then
|
|
echo "[cont-init.d] ${i} is required and is not set will not continue"
|
|
exit 0
|
|
fi
|
|
done
|
|
|
|
# permissions
|
|
chown -R abc:abc \
|
|
/app
|