This commit is contained in:
Simon Martens
2025-10-02 23:25:08 +02:00
commit c22b0e6e13
26364 changed files with 52985 additions and 0 deletions

8
entrypoint.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/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