forked from michael.heier/citadel-core
Another fix
This commit is contained in:
parent
d72e128b2f
commit
cff5362557
|
@ -16,7 +16,7 @@ def getMainContainer(app: App) -> Container:
|
||||||
else:
|
else:
|
||||||
for container in app.containers:
|
for container in app.containers:
|
||||||
# Main is recommended, support web for easier porting from Umbrel
|
# Main is recommended, support web for easier porting from Umbrel
|
||||||
if container.name == 'main' or container.name == 'web':
|
if (container.name == 'main' or container.name == 'web') and not container.ignored:
|
||||||
return container
|
return container
|
||||||
for container in app.containers:
|
for container in app.containers:
|
||||||
# Also allow names to start with main
|
# Also allow names to start with main
|
||||||
|
|
Loading…
Reference in New Issue
Block a user