diff --git a/tests/Orchestration/Base.php b/tests/Orchestration/Base.php index d326ebb..ebbe546 100644 --- a/tests/Orchestration/Base.php +++ b/tests/Orchestration/Base.php @@ -488,6 +488,10 @@ public function testUsageStats(): void $this->assertNotEmpty($containerId1); + $output = ''; + Console::execute("docker inspect $containerId1", '', $output); + $dump($output); + $containerId2 = static::getOrchestration()->run( 'containerstack/alpine-stress', 'UsageStats2', @@ -507,6 +511,10 @@ public function testUsageStats(): void $this->assertNotEmpty($containerId2); + $output = ''; + Console::execute("docker inspect $containerId2", '', $output); + $dump($output); + $output = ''; static::getOrchestration()->execute($containerId1, ['which', 'screen'], $output); $dump($output);