mirror of
https://github.com/moghtech/komodo.git
synced 2026-05-04 14:59:15 -05:00
add server
This commit is contained in:
@@ -113,7 +113,6 @@ export async function deleteContainer(containerName: string) {
|
||||
export async function dockerRun(
|
||||
{
|
||||
image,
|
||||
latest,
|
||||
ports,
|
||||
environment,
|
||||
network,
|
||||
@@ -133,7 +132,7 @@ export async function dockerRun(
|
||||
envString(environment) +
|
||||
restartString(restart) +
|
||||
networkString(network) +
|
||||
` ${image}${latest ? ":latest" : ""}${postImage ? " " + postImage : ""}`;
|
||||
` ${image}${postImage ? " " + postImage : ""}`;
|
||||
|
||||
return await execute(command);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user