Merge pull request #246 from nextcloud/enh/219/do-not-disconnect-from-network

Do not disconnect containers from network
This commit is contained in:
Simon L 2022-02-23 18:05:02 +01:00 committed by GitHub
commit 748dcea39e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,7 +133,8 @@ class DockerController
$this->PerformRecursiveContainerStop($dependency);
}
$this->dockerActionManager->DisconnectContainerFromNetwork($container);
// Disconnecting is not needed. This also allows to start the containers manually via docker-cli
//$this->dockerActionManager->DisconnectContainerFromNetwork($container);
$this->dockerActionManager->StopContainer($container);
}