This commit is contained in:
Simon Martens
2025-10-02 23:39:57 +02:00
commit dde7fdf35d
7202 changed files with 2426322 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