add server

This commit is contained in:
mbecker20
2022-03-28 00:44:16 -07:00
parent 4add8edaa8
commit 06947d8612
22 changed files with 3133 additions and 48 deletions

View File

@@ -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);
}