update docker-run on chihounds, force install

This commit is contained in:
2023-12-23 10:58:20 -06:00
parent 7e98abb3d6
commit 5cee959904
2 changed files with 3 additions and 3 deletions

View File

@@ -2,6 +2,6 @@ cd "$(dirname "$0")"
./wp-cli.sh sh -c '
wp db create || true && \
wp core install --title="$WORDPRESS_TITLE" --url="$WORDPRESS_SITEURL" --admin_user=$WORDPRESS_ADMIN_USER --admin_email=$WORDPRESS_ADMIN_EMAIL --admin_password=$WORDPRESS_ADMIN_PASSWORD && \
wp theme install $WP_THEMES --activate; \
wp plugin install $WP_PLUGINS --activate
wp theme install $WP_THEMES --activate --force; \
wp plugin install $WP_PLUGINS --activate --force
'