Skip to content

Commit

Permalink
Bump mariadb version
Browse files Browse the repository at this point in the history
  • Loading branch information
annemirasol committed Dec 17, 2024
1 parent b919ed3 commit 82573e4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
- "host.docker.internal:host-gateway"
db:
container_name: woocommerce_stripe_mysql
image: mariadb:10.5.8
image: mariadb:latest
ports:
- "5678:3306"
env_file:
Expand Down
6 changes: 3 additions & 3 deletions tests/e2e/bin/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ redirect_output cli wp core install \
--skip-email

if [[ -n "$WP_VERSION" && "$WP_VERSION" != "latest" ]]; then
echo " - Installing Wordpress ${WP_VERSION}..."
echo " - Installing WordPress ${WP_VERSION}..."
redirect_output cli wp core update --version="$WP_VERSION" --force --quiet
else
echo " - Updating Wordpress to the latest version"
echo " - Updating WordPress to the latest version"
redirect_output cli wp core update --quiet
fi

Expand All @@ -74,7 +74,7 @@ redirect_output cli wp config set WP_DEBUG false --raw
echo " - Updating permalink structure"
redirect_output cli wp rewrite structure '/%postname%/'

echo " - Installing Wordpress Importer"
echo " - Installing WordPress Importer"
redirect_output cli wp plugin install wordpress-importer --activate

echo " - Disable emails to avoid spamming"
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/env/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
volumes:
# Kludge for not having the ./docker directory bound recursively
dockerdirectory:

services:
wordpress:
build: .
Expand All @@ -24,7 +24,7 @@ services:
- "host.docker.internal:host-gateway"
db:
container_name: wcstripe-e2e-mysql
image: mariadb:10.5.8
image: mariadb:latest
ports:
- "6789:3306"
env_file:
Expand Down

0 comments on commit 82573e4

Please sign in to comment.