docs: fix out of place JSDoc comment
This commit is contained in:
parent
3f574e4003
commit
dfc284c34d
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue