remove docs

This commit is contained in:
huanqing.shao
2019-07-31 19:40:56 +08:00
parent 10b59aa33a
commit 9d463d9db5
261 changed files with 122 additions and 1770 deletions

16
build.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
datetime=`date +%Y%m%d-%H%M%S`
echo $datetime
tag=eipwork/kuboard-press
npm install --registry=https://registry.npm.taobao.org
npm run docs:build
docker build -t $tag:latest .
if test $datetime != ""; then
docker push $tag:latest
docker tag $tag:latest $tag:$datetime
docker push $tag:$datetime
fi