mirror of
https://github.com/Theodor-Springmann-Stiftung/carpeteppich.git
synced 2025-10-28 08:45:31 +00:00
9 lines
223 B
Bash
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
|