@RestController
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "hello";
}
@GetMapping("/hello/dto")
public HelloResponseDto helloDto(@RequestParam("name") String name,
@RequestParam("amount") int amount) {
return new HelloResponseDto(name, amount);
}
// 추가한 코드
@GetMapping("/jenkins")
public String jenkins_test() {
return "jenkins test : guswns3371/spring-example:1.0-SNAPSHOT";
}
}
- 이처럼 docker 설치 후 /var/run/docker.sock의 permission denied 발생한 경우는
- sudo chmod 666 /var/run/docker.sock 또는
- sudo chmod -R 777 /var/run/docker.sock 명령어를 실행하여 해당 파일의 접근권한을 변경해야한다.
docker portainer GUI Web : http://localhost:9000/#/home
생성된 docker image 확인
spring-example:1.0-SNAPSHOT라는 이름의 image가 새성됨
spring_example_app 이라는 이름의 container가 실행됨