From d826bdbb7ca41f3cecb007e7599f8d12d8303a50 Mon Sep 17 00:00:00 2001 From: desrosj Date: Tue, 12 Nov 2024 17:46:21 +0000 Subject: [PATCH] Build/Test Tools: Prevent orphaned Docker containers. This updates certain local Docker environment commands to include `--rm`, which instructs `docker compose` to remove the container after running the specified scripts. Previously only the installation script contained `--rm`. But running `test:php`, `env:start`, or `env:cli` resulted in the container remaining. Props johnbillion. Fixes #62395. Built from https://develop.svn.wordpress.org/trunk@59393 git-svn-id: http://core.svn.wordpress.org/trunk@58779 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 37a70d92aa..a2f93dbca3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59392'; +$wp_version = '6.8-alpha-59393'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.