Docker backend infrastructure

This commit is contained in:
ChiefSoft works
2022-07-31 14:56:41 +00:00
parent ef29296471
commit 8e09298ad1
14 changed files with 2633 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
set -e
/usr/local/bin/docker-boot
# first arg is `-f` or `--some-option`
if [ "${1#-}" != "$1" ]; then
set -- php-fpm "$@"
fi
exec "$@"