Files
docker-php-alpine/docker-entrypoint.sh
2025-08-30 18:55:04 +00:00

12 lines
247 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/sh
set -e
# NEměním vlastníky respektuju bind-mounty/práva z hosta
# PHP-FPM do pozadí (foreground režim)
php-fpm84 -F &
# Apache jako root (zapíše PID, pak shodí práva podle httpd.conf)
exec /usr/sbin/httpd -D FOREGROUND