forked from michael.heier/citadel-core
Fix apps on Tor
This commit is contained in:
parent
44a033bada
commit
288b165d1f
|
@ -132,12 +132,14 @@ def configureMainPort(app: dict, nodeRoot: str):
|
||||||
mainContainer['ports'].append(portToAppend)
|
mainContainer['ports'].append(portToAppend)
|
||||||
# Set the main port to the first port in the list, if it contains a :, it's the port after the :
|
# Set the main port to the first port in the list, if it contains a :, it's the port after the :
|
||||||
# If it doesn't contain a :, it's the port itself
|
# If it doesn't contain a :, it's the port itself
|
||||||
if not mainPort:
|
if mainPort == False:
|
||||||
mainPort = mainContainer['ports'][0]
|
mainPort = mainContainer['ports'][0]
|
||||||
if(mainPort.find(":") != -1):
|
if(mainPort.find(":") != -1):
|
||||||
mainPort = mainPort.split(":")[1]
|
mainPort = mainPort.split(":")[1]
|
||||||
else:
|
else:
|
||||||
mainContainer['ports'] = [portToAppend]
|
mainContainer['ports'] = [portToAppend]
|
||||||
|
if mainPort == False:
|
||||||
|
mainPort = portDetails['port']
|
||||||
|
|
||||||
mainContainer = assignIp(mainContainer, app['metadata']['id'], path.join(
|
mainContainer = assignIp(mainContainer, app['metadata']['id'], path.join(
|
||||||
nodeRoot, "apps", "networking.json"), path.join(nodeRoot, ".env"))
|
nodeRoot, "apps", "networking.json"), path.join(nodeRoot, ".env"))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user