* Use CMD to run apache

* add missing exec from entrypoint

* Move set command

* Update to Dolibarr 12.0.3
This commit is contained in:
Garcia MICHEL
2020-10-20 10:50:21 +02:00
committed by GitHub
parent 649bbd7f2e
commit 81bf31ccc5
32 changed files with 139 additions and 19 deletions

View File

@@ -173,4 +173,10 @@ function run()
run
exec apache2-foreground
set -e
if [ "${1#-}" != "$1" ]; then
set -- apache2-foreground "$@"
fi
exec "$@"