Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- TypeScript
- Client
- DISTINCT
- 프로그래머스
- Java
- SSL
- centos7
- spring
- 토비의스프링
- 코딩테스트
- 책 정리
- EC2
- spring boot
- TLS
- Jenkins
- vagrant
- Linux
- WebHook
- window
- AWS
- jdbc
- mariadb
- github
- db
- sample
- docker
- ssh
- Hibernate
- Git
- Spring Legacy Project
Archives
- Today
- Total
Woopii Vyeolog
[Docker] Spring Boot 어플리케이션 이미지 생성 본문
[참고] spring Boot application을 Docker 이미지로 생성
https://spring.io/guides/gs/spring-boot-docker/
0. 필요 사항
- Spring Boot Application
[참고] https://woopi1087.tistory.com/51?category=972320 - Virtual Box(가상화 소프트웨어) 설치 및 VM 생성(centos7)
[참고] https://woopi1087.tistory.com/58?category=989523 - Docker 설치
[참고] https://woopi1087.tistory.com/86?category=1038220
1. Spring Boot Application 생성
도커 이미지를 생성할 Spring Boot Application을 생성한다.
package com.woopi.project.eurekadiscoveryserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@EnableEurekaServer
@RestController
public class EurekaDiscoveryServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaDiscoveryServerApplication.class, args);
System.out.println("Eureka Discovery Server Start !!!!!");
System.out.println("Eureka Discovery Server Start !!!!!");
System.out.println("Eureka Discovery Server Start !!!!!");
}
@GetMapping("/api/hello")
public String Hello () {
return "Hello Eureka Discovery Server.";
}
}
2. jar 파일 생성
mvnw install -DSkipTests
3. 생성해둔 VM에 jar파일 업로드
FTP를 통해 VM에 파일 업로드
예 : /home/devops/dockerfiles/jarfiles/eureka-discovery-server-0.0.1.jar
4. DockerFile 생성
이미지를 빌드 할 수 있는 Docker파일 생성
예 : /home/devops/dockerfiles/dockerfile-eureka-discovery-server
dockerfile-eureka-discovery-server은 아래와 같은 스크립트를 가지고 있다.
# 베이스 이미지 PULL
FROM adoptopenjdk/openjdk11:alpine
# 로컬 디렉토리의 jar를 컨테이너로 복사
COPY jarfiles/eureka-discovery-server-0.0.1.jar eureka-discovery-server-0.0.1.jar
# 컨테이너 실행 시 수행할 명령어
ENTRYPOINT ["java","-jar","/eureka-discovery-server-0.0.1.jar"]
5. Dockerfile로 이미지 빌드
docker build -t eureka-discovery-server:1.0 -f dockerfile-eureka-discovery-server .
6. 빌드한 이미지로 컨테이너 생성
docker run -p 8761:8761 --name=eureka-discovery-server eureka-discovery-server:1.0
7. 호스트 OS의 브라우저에서 Spring Boot Application 호출
'Docker' 카테고리의 다른 글
[Docker] 명령어 자동 완성 플러그인 설치 (mac) (0) | 2024.02.22 |
---|---|
[Docker] mac에서 docker 설치 (0) | 2024.02.22 |
[Docker] 컨테이너끼리 통신 (0) | 2022.09.01 |
[Docker] Centos7환경에서 Docker 설치 (0) | 2022.08.30 |
[Docker] Docker 관련 개념 정리 링크 모음 (0) | 2022.08.30 |
Comments