docs: fix out of place JSDoc comment

This commit is contained in:
jakeaturner 2026-06-08 18:03:35 +00:00
parent 3f574e4003
commit dfc284c34d
No known key found for this signature in database
GPG Key ID: B1072EBDEECE328D
1 changed files with 7 additions and 7 deletions

View File

@ -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