Stop tracking generated theme assets, wpcli scripts and export XML

main
radioparalelo 2026-03-09 19:56:13 +00:00
parent dca96e590e
commit 9fa407c10c
11 changed files with 0 additions and 5406 deletions

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,21 +0,0 @@
# wpcli/Dockerfile
FROM wordpress:cli
# -------------------------------------------------
# Install unzip and Composer (needs root)
# -------------------------------------------------
USER root
RUN set -eux && \
apk add --no-cache unzip && \
curl -sS https://getcomposer.org/installer | \
php -- --install-dir=/usr/local/bin --filename=composer
# -------------------------------------------------
# Add the waitforDB entrypoint script
# -------------------------------------------------
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
# Return to the default nonroot user
USER www-data

View File

@ -1,10 +0,0 @@
#!/bin/bash
set -e
# Wait for MariaDB
until mysqladmin ping -h"$WORDPRESS_DB_HOST" -u"$WORDPRESS_DB_USER" -p"$WORDPRESS_DB_PASSWORD" --silent; do
echo "⏳ Waiting for database..."
sleep 2
done
exec "$@"