Skip to content

Commit 95f4213

Browse files
committed
fix: don't put a timeout when running docker push command
1 parent 331b288 commit 95f4213

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Executable/DockerExecutable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function login(string $username, string $password, string $server, ?strin
6060
*/
6161
public function push(string $image, ?string $cwd = null)
6262
{
63-
$this->run(sprintf('push %s', $image), $cwd);
63+
$this->run(sprintf('push %s', $image), $cwd, null);
6464
}
6565

6666
/**

0 commit comments

Comments
 (0)