From 38f3ccb364b6e4b7e87ff2d0d9edfead1d67947e Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Wed, 15 May 2019 21:42:29 +0200 Subject: [PATCH] fix(core): update --- ts/tsdoc.classes.mkdocs.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/tsdoc.classes.mkdocs.ts b/ts/tsdoc.classes.mkdocs.ts index 3954bc0..9f67d94 100644 --- a/ts/tsdoc.classes.mkdocs.ts +++ b/ts/tsdoc.classes.mkdocs.ts @@ -45,7 +45,7 @@ export class MkDocs { await this.update(); await this.smartshellInstance.exec(`rm -rf public/`); await this.smartshellInstance.exec( - `docker run --rm -it -p 8000:8000 -v ${ + `docker run --rm -p 8000:8000 -v ${ paths.cwd }:/docs registry.gitlab.com/hosttoday/ht-docker-mkdocs build` ); @@ -54,7 +54,7 @@ export class MkDocs { public async serve() { await this.update(); await this.smartshellInstance.exec( - `docker run --rm -it -p 8000:8000 -v ${ + `docker run --rm -p 8000:8000 -v ${ paths.cwd }:/docs registry.gitlab.com/hosttoday/ht-docker-mkdocs` );