Skip to content

Commit ab954c8

Browse files
committed
MCLOUD-11659: Add php 8.3 to magento-cloud-docker
1 parent ef4eb83 commit ab954c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/functional/Robo/Tasks/DockerCompose/Run.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function __construct($container)
6363
public function getCommand()
6464
{
6565
return trim(sprintf(
66-
'docker-compose run -w %s %s %s ' . $this->runWrapper,
66+
'docker-compose run --rm -w %s %s %s ' . $this->runWrapper,
6767
escapeshellarg($this->workingDir),
6868
$this->arguments,
6969
escapeshellarg($this->container),

tests/functional/Robo/Tasks/EnvCleanUp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function getCommand(): string
4444

4545
foreach ($this->volumes as $volume) {
4646
$commands[] = sprintf(
47-
'docker-compose run %s bash -c "mkdir -p %s"',
47+
'docker-compose run --rm %s bash -c "mkdir -p %s"',
4848
Docker::BUILD_CONTAINER,
4949
$volume
5050
);

0 commit comments

Comments
 (0)