chore: pipelines, src

This commit is contained in:
Jesús Pérez Lorenzo 2022-01-13 23:09:43 +00:00
parent 3c02febe77
commit 42e3e64279
15 changed files with 930 additions and 0 deletions

9
src/docker-php-entrypoint Executable file
View file

@ -0,0 +1,9 @@
#!/bin/sh
set -e
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- apache2-foreground "$@"
fi
exec "$@"