Skip to content
Snippets Groups Projects
Merged Carina Antunes requested to merge pvc-2 into mvp
Files
13
+ 0
4
#!/bin/bash
FLAG_FILE="/var/www/html/.installed"
# Wait for the installation flag file
echo "Waiting for WordPress installation to complete..."
while [ ! -f "$FLAG_FILE" ]; do
@@ -15,8 +13,6 @@ wp core update-db --allow-root
# Set or update options
source /usr/share/container-scripts/set-options.sh
php -f /var/www/html/wordpress/options.php
echo "Starting PHP-FPM..."
# Start PHP-FPM
php-fpm
Loading