Files
thetool/docker/php/entrypoint.sh
2024-05-08 21:07:07 +02:00

6 lines
161 B
Bash

#!/bin/bash
trap "echo 'Stopping Apache...'; apachectl stop; exit 0" SIGTERM
apachectl -D FOREGROUND &
# Wait for Apache and all child processes to exit
wait $!