Files
SAE-BUT2-docker/docker/php/scripts/context.sh
T
2026-03-28 11:51:02 +01:00

12 lines
132 B
Bash

#!/bin/sh
APP_DIR=/var/www/app
IS_DEV=${DEV:-0}
run() {
if [ "$IS_DEV" = 1 ]; then
gosu www-data "$@"
else
"$@"
fi
}