mirror of
https://github.com/docker-library/php.git
synced 2025-08-20 13:53:47 +00:00
8 lines
132 B
Bash
Executable File
8 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Apache gets grumpy about PID files pre-existing
|
|
rm -f /var/run/apache2/apache2.pid
|
|
|
|
exec apache2 -DFOREGROUND
|