mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-06 13:57:57 +00:00
Camelize property talk_port => talkPort
Signed-off-by: Pablo Zmdl <pablo@nextcloud.com>
This commit is contained in:
parent
5812660aad
commit
1091f0e8fe
3 changed files with 6 additions and 6 deletions
|
|
@ -117,7 +117,7 @@ readonly class DockerActionManager {
|
|||
if ($internalPort === '%APACHE_PORT%') {
|
||||
$internalPort = $this->configurationManager->apachePort;
|
||||
} elseif ($internalPort === '%TALK_PORT%') {
|
||||
$internalPort = $this->configurationManager->talk_port;
|
||||
$internalPort = $this->configurationManager->talkPort;
|
||||
}
|
||||
|
||||
if ($internalPort !== "" && $internalPort !== 'host') {
|
||||
|
|
@ -259,7 +259,7 @@ readonly class DockerActionManager {
|
|||
continue;
|
||||
}
|
||||
} else if ($port === '%TALK_PORT%') {
|
||||
$port = $this->configurationManager->talk_port;
|
||||
$port = $this->configurationManager->talkPort;
|
||||
}
|
||||
$portWithProtocol = $port . '/' . $protocol;
|
||||
$exposedPorts[$portWithProtocol] = null;
|
||||
|
|
@ -281,7 +281,7 @@ readonly class DockerActionManager {
|
|||
continue;
|
||||
}
|
||||
} else if ($port === '%TALK_PORT%') {
|
||||
$port = $this->configurationManager->talk_port;
|
||||
$port = $this->configurationManager->talkPort;
|
||||
// Skip publishing talk tcp port if it is set to 443
|
||||
if ($port === '443' && $protocol === 'tcp') {
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue