plugins입력
plugins {
id 'org.hidetake.ssh' version '2.10.1'
}
리무트 입력
remotes {
devec2 {
host = 'ec2-ec2주소.ap-northeast-2.compute.amazonaws.com'
user = 'ec2-user'
identity = file("내 ec2 키파일위치/ec2파일.pem")
}
}
task작성
task deploy {
doLast {
ssh.run {
session(remotes.devec2 ) {
put from: '빌드파일위치/빌드파일이름.jar', into: '/home/ec2-user'
}
}
}
}
'Springboot' 카테고리의 다른 글
Springboot 구글 메일 전송 하기 (5월30일 이후) (0) | 2022.08.25 |
---|---|
springboot Json에 배열 담아 요청하기 (0) | 2022.08.14 |
vscode에서 springboot profile 변경하기 (0) | 2022.04.05 |