Switch portal/gateway to port 8900

Update portal port from 80 to 8900 across deployment files. Adjust the CLI status message in deployment/cli/stack.py to print http://localhost:8900, update access URLs in deployment/metabuilder/compose.yml comments to include :8900, and change the nginx service port mapping from "80:80" to "8900:80" so the gateway is exposed on a non-privileged localhost port.
This commit is contained in:
2026-05-03 15:16:01 +01:00
parent c23f53b0be
commit 80c52fac44
2 changed files with 25 additions and 25 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ def _wait_for_healthy(profiles: list[str], args: argparse.Namespace) -> None:
healthy = result.stdout.count('"healthy"')
if healthy >= core_count:
print(f"\n{GREEN}All {core_count} services healthy!{NC}")
print(f"\nPortal: {BLUE}http://localhost{NC}\n")
print(f"\nPortal: {BLUE}http://localhost:8900{NC}\n")
print("Quick commands:")
print(" python3 deployment.py stack logs")
print(" python3 deployment.py stack down")