17 lines
460 B
PowerShell
17 lines
460 B
PowerShell
if (-not $args) {
|
|
Write-Error "需要指定版本号"
|
|
exit 1
|
|
}
|
|
|
|
$confrim = Read-Host "构建版本为 [admin:$($args[0])],是否继续?(y/n)"
|
|
if ($confrim -ne "y") {
|
|
Write-Host "已取消构建"
|
|
exit 0
|
|
}
|
|
|
|
docker build -t repo.lanhuip.com:8554/lanhu/admin:latest .
|
|
docker build -t repo.lanhuip.com:8554/lanhu/admin:$($args[0]) .
|
|
|
|
docker push repo.lanhuip.com:8554/lanhu/admin:latest
|
|
docker push repo.lanhuip.com:8554/lanhu/admin:$($args[0])
|