petersweb-infra/nixos/atitraining/entrypoint.sh
Philip Peterson 3ace2e661b add wordpress
2026-06-25 21:43:10 -07:00

6 lines
254 B
Bash

#!/bin/bash
set -e
# Run WP-CLI setup in background; it waits for wp-config.php and the DB
/usr/local/bin/wp-init-bg.sh &
# Hand off to the official WordPress entrypoint (writes wp-config.php, starts Apache)
exec /usr/local/bin/docker-entrypoint.sh "$@"