fix exposing containers

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-01-02 17:37:57 +01:00
parent eaabc8e4b0
commit cb980f9e84
3 changed files with 17 additions and 18 deletions

View file

@ -5,12 +5,12 @@ namespace AIO\Container;
class ContainerPort {
public string $port;
public string $ipBinding;
public bool $protocol;
public string $protocol;
public function __construct(
string $port,
string $ipBinding,
bool $protocol
string $protocol
) {
$this->port = $port;
$this->ipBinding = $ipBinding;