Files
pantoia/entrypoint.sh
Simon Martens c0683a7c1c Init
2025-10-02 23:22:48 +02:00

9 lines
223 B
Bash

#!/bin/sh
set -e
# Start the TCP proxy in the background for "localhost" DB connection if needed
socat TCP-LISTEN:3306,fork TCP:db:3306 &
# Execute the original command for the container (start Apache)
apache2-foreground