diff --git a/community-containers/caddy/caddy.json b/community-containers/caddy/caddy.json index b85d74a0..f6143fbc 100644 --- a/community-containers/caddy/caddy.json +++ b/community-containers/caddy/caddy.json @@ -13,11 +13,6 @@ "ip_binding": "", "port_number": "443", "protocol": "tcp" - }, - { - "ip_binding": "", - "port_number": "443", - "protocol": "udp" } ], "environment": [ diff --git a/php/src/Docker/DockerActionManager.php b/php/src/Docker/DockerActionManager.php index 53df4df6..a6f5d223 100644 --- a/php/src/Docker/DockerActionManager.php +++ b/php/src/Docker/DockerActionManager.php @@ -290,8 +290,8 @@ readonly class DockerActionManager { } } else if ($port === '%TALK_PORT%') { $port = $this->configurationManager->GetTalkPort(); - // Skip publishing talk port if it is set to 443 - if ($port === '443') { + // Skip publishing talk tcp port if it is set to 443 + if ($port === '443' && $protocol === 'tcp') { continue; } }