123456789101112131415161718192021222324252627282930313233343536 |
- @echo off
- echo %~n0.bat start...
- :: #1 get basePath
- set curPath=%cd%
- cd /d "%~dp0"
- cd /d ../../..
- set basePath=%cd%
- :: #2
- set publishPath=%basePath%/Publish/release/release/Station(net6.0)
- set dockerPath=%basePath%/Publish/release/release/docker-image
- rd /s /q "%dockerPath%"
- :: #3 copy dir
- xcopy "%basePath%/Publish/ReleaseFile/docker-image" "%dockerPath%" /e /i /r /y
- :: #4 copy station
- xcopy "%publishPath%/ServiceCenter" "%dockerPath%/sers/app" /e /i /r /y
- xcopy "%publishPath%/Gateway" "%dockerPath%/sers-gateway/app" /e /i /r /y
- xcopy "%publishPath%/Gover" "%dockerPath%/sers-gover/app" /e /i /r /y
- xcopy "%publishPath%/Demo" "%dockerPath%/sers-demo/app" /e /i /r /y
- xcopy "%publishPath%/Robot" "%dockerPath%/sers-demo-robot/app" /e /i /r /y
- xcopy "%basePath%/Publish/release/release/压测/单体压测net6.0/ServiceCenter" "%dockerPath%/sers-demo-sersall/app" /e /i /r /y
-
- echo %~n0.bat success
- cd /d "%curPath%"
|