mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-01 03:22:48 +08:00
fix adding a container to a network
Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
parent
343eebbbcd
commit
2733f115ec
1 changed files with 4 additions and 1 deletions
|
@ -456,7 +456,10 @@ class DockerActionManager
|
|||
]
|
||||
);
|
||||
} catch (RequestException $e) {
|
||||
throw $e;
|
||||
// 403 is undocumented and gets thrown if a specific container is already part of a network
|
||||
if ($e->getCode() !== 403) {
|
||||
throw $e;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue