From d36ff674099df2c806722b327c04dd63931005f0 Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Wed, 17 Jun 2026 14:37:09 +1000 Subject: [PATCH] unregistry: change the listening port on each machine 5000 -> 51500 --- internal/machine/constants/constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/machine/constants/constants.go b/internal/machine/constants/constants.go index 019c95c8..78b456bc 100644 --- a/internal/machine/constants/constants.go +++ b/internal/machine/constants/constants.go @@ -4,5 +4,5 @@ const ( // MachineAPIPort is the port for the Machine API service on the management WireGuard network. MachineAPIPort = 51000 // UnregistryPort is the port for the embedded container registry listening on the machine IP. - UnregistryPort = 5000 + UnregistryPort = 51500 )