11 lines
298 B
PowerShell
11 lines
298 B
PowerShell
$src="./target/fxkh-txl-service-1.0.jar"
|
|
$dst_dir="~/gunshiApp/fxkh"
|
|
$dst_host="10.0.41.112"
|
|
$dst_port=22
|
|
$user="root"
|
|
$identity="deploy_rsa"
|
|
|
|
scp -i deploy_rsa -P $dst_port $src $user@${dst_host}:${dst_dir}
|
|
|
|
ssh -i deploy_rsa -p $dst_port $user@${dst_host} "cd ${dst_dir}; docker compose restart"
|