1
0
docker-apache2-itk/start.sh

11 lines
157 B
Bash
Raw Normal View History

2022-10-20 13:42:52 +02:00
#!/bin/bash
set -ex
/usr/sbin/php-fpm8.1 --nodaemonize --fpm-config /etc/php/8.1/fpm/php-fpm.conf &
/usr/sbin/apache2ctl -D FOREGROUND &
wait -n
exit $?