From dfc284c34d59ba212bd6356c852adcd35767ac98 Mon Sep 17 00:00:00 2001 From: jakeaturner Date: Mon, 8 Jun 2026 18:03:35 +0000 Subject: [PATCH] docs: fix out of place JSDoc comment --- admin/app/services/docker_service.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/admin/app/services/docker_service.ts b/admin/app/services/docker_service.ts index 87a7742..7919b1d 100644 --- a/admin/app/services/docker_service.ts +++ b/admin/app/services/docker_service.ts @@ -455,13 +455,6 @@ export class DockerService { } } - /** - * Handles the long-running process of creating a Docker container for a service. - * NOTE: This method should not be called directly. Instead, use `createContainerPreflight` to check prerequisites first - * This method will also transmit server-sent events to the client to notify of progress. - * @param serviceName - * @returns - */ /** * Translate low-level dockerode errors into something a non-technical user can * act on. Currently handles host port conflicts — the most common install @@ -576,6 +569,13 @@ export class DockerService { }) } + /** + * Handles the long-running process of creating a Docker container for a service. + * NOTE: This method should not be called directly. Instead, use `createContainerPreflight` to check prerequisites first + * This method will also transmit server-sent events to the client to notify of progress. + * @param serviceName + * @returns + */ async _createContainer( service: Service & { dependencies?: Service[] }, containerConfig: any