fix issue with passing envs into the container. Remove container registry usage.

This commit is contained in:
Sergei Shitikov
2024-09-01 14:43:34 +02:00
parent 58f811ec8a
commit b0e4f60592
10 changed files with 60 additions and 46 deletions
+2
View File
@@ -41,6 +41,8 @@ class WaitForContainerRunning implements WaitInterface
return;
}
var_dump($containerStatus);
usleep($this->pollInterval * 1000);
}
}
-1
View File
@@ -8,7 +8,6 @@ use Closure;
use Docker\API\Model\ContainersIdExecPostBody;
use Docker\API\Model\ExecIdStartPostBody;
use Docker\Docker;
use Testcontainers\Exception\ContainerNotReadyException;
class WaitForExec implements WaitInterface
{