在Jib中使用非常简单的方式将Java应用程序Docker化
2018年7月11日,Google发布了Jib。Jib是一个能够自动将Java应用程序容器化为Docker容器的开源软件。它以Maven和Gradle插件的形式发布,并且只需将Jib注册为插件,就可以轻松使用它。而且,您不需要自己编写Dockerfile等文件,Jib会自动为您生成镜像。以前,我们需要编写Dockerfile和docker-compose.yml文件来构建镜像,但现在只需使用mvn或gradle进行构建,就能自动构建镜像,非常方便。本文章将介绍如何使用Maven项目创建一个Spring应用程序(Hello world),并在Docker中查看该应用程序。
创建Maven项目
首先,在Spring Initializr中创建Spring的模板。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.jib</groupId>
<artifactId>jibDemo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>jibDemo</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
接下来,我们将添加Jib的配置。
<!-- Jib -->
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>0.9.6</version>
<configuration>
<to>
<image>hellojib</image>
</to>
</configuration>
</plugin>
在build部分添加Jib的插件。
只需要在eclipse或Intellij中导入即可。
Java应用程序
应用程序目前仅支持“Hello World”的功能。
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class HelloController {
@RequestMapping("/")
public String sayHello(Model model) {
model.addAttribute("message", "Hello World!!!");
return "index";
}
}
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Hello Spring</title>
</head>
<body>
<span th:text="${message}">Hello world</span>
</body>
</html>
构建Docker镜像
在Jib中创建Docker镜像。
$ mvn compile jib:build
成功后会生成Docker镜像。
$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
hellojib latest 16ab4943a4d8 48 years ago 138MB
Docker镜像名称可以在pom.xml的configuration中进行配置。这次我们将image设置为hellojib。
<configuration>
<to>
<image>hellojib</image>
</to>
</configuration>
使用Docker,您可以像这样运行Java应用程序:docker run –name hellojib -d -p 8080:8080 hellojibD。