Dokploy/dokploy · error · TRPCError
NOT_FOUND
NOT_FOUND
Error message
Select a server to test the registry
What it means
Error "Select a server to test the registry" thrown in Dokploy/dokploy.
Source
Thrown at apps/dokploy/server/api/routers/registry.ts:117
message: "You are not allowed to access this registry",
});
}
return registry;
}),
testRegistry: withPermission("registry", "read")
.input(apiTestRegistry)
.mutation(async ({ input }) => {
try {
const args = [
"login",
input.registryUrl,
"--username",
input.username,
"--password-stdin",
];
if (IS_CLOUD && !input.serverId) {
throw new TRPCError({
code: "NOT_FOUND",
message: "Select a server to test the registry",
});
}
if (input.serverId && input.serverId !== "none") {
await execAsyncRemote(
input.serverId,
safeDockerLoginCommand(
input.registryUrl,
input.username,
input.password,
),
);
} else {
await execFileAsync("docker", args, {
input: Buffer.from(input.password).toString(),
});View on GitHub (pinned to 546686ea35)
When it happens
Trigger: Thrown at apps/dokploy/server/api/routers/registry.ts:117 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of Dokploy/dokploy@546686ea35 (2026-08-27).
Data as JSON: /api/errors/b67a23dacf2c2df3.
Report an issue: GitHub.