Add env file loading

This commit is contained in:
Fabian Arndt 2025-09-13 02:38:52 +02:00
parent 2930cf03b8
commit 6bfe392a35

View File

@ -1,6 +1,12 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash
# load env file if it exists
if [[ -f "/config/env" ]]; then
# shellcheck source=/dev/null
source /config/env
fi
# create folders
mkdir -p \
/app/www/public \