Files
umlaut-press/entrypoint.sh
2026-02-12 23:41:57 -03:00

6 lines
152 B
Bash

#!/bin/sh
set -e
# Start PHP-FPM in the background (official php image: /usr/local/sbin/php-fpm)
/usr/local/sbin/php-fpm -D
exec nginx -g 'daemon off;'