| 123456789101112131415161718192021222324252627282930313233343536373839404142 | echo offcall setEnvVars.batdocker -vset START_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"echo start time %START_TIME%rem call Set-ExecutionPolicy RemoteSigned -Scope Processcd ./maxkey-webs/maxkey-web-maxkeyrem maxkey:latestrem push to docker hubcall docker push %MXK_REPOSITORY%/maxkeyrem maxkey:$versioncall docker tag  %MXK_REPOSITORY%/maxkey %MXK_REPOSITORY%/maxkey:%MXK_VERSION%rem push to docker hubcall docker push %MXK_REPOSITORY%/maxkey:%MXK_VERSION%cd ../../cd ./maxkey-webs/maxkey-web-mgtrem maxkey-mgt:latestrem push to docker hubcall docker push %MXK_REPOSITORY%/maxkey-mgtrem maxkey-mgt:$versioncall docker tag %MXK_REPOSITORY%/maxkey-mgt %MXK_REPOSITORY%/maxkey-mgt:%MXK_VERSION%rem push to docker hubcall docker push %MXK_REPOSITORY%/maxkey-mgt:%MXK_VERSION%set END_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"echo Build Release start at %START_TIME%  complete at %END_TIME%.pause
 |