docker-alpine-php83-aio/config/frameworks/00-no-fpm.sh

10 lines
197 B
Bash

#!/bin/sh
if [ -f /application/.no-fpm ]; then
echo " -> Disabling php-fpm service..."
rm -f /etc/supervisor.d/php-fpm.ini
fi
# scripts at level 00 should not end the framework setup
exit 1