码迷,mamicode.com
首页 > 编程语言 > 详细

springboot项目打包docker镜像maven插件

时间:2020-06-05 14:53:25      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:als   pos   https   mave   配置   set   ecs   systemd   sock   

<!-- profile docker config -->
    <profiles>
        <profile>
            <id>docker</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>com.spotify</groupId>
                        <artifactId>docker-maven-plugin</artifactId>
                        <version>0.4.14</version>
                        <executions>
                            <!-- when executing mvn package, it will execute mvn docker:build at the same time -->
                            <execution>
                                <id>build-image</id>
                                <phase>package</phase>
                                <goals>
                                    <goal>build</goal>
                                </goals>
                            </execution>
                            <!-- when executing mvn package, it will execute mvn docker:build -DpushImage at the same time -->
                            <execution>
                                <id>push-image</id>
                                <phase>package</phase>
                                <goals>
                                    <goal>push</goal>
                                </goals>
                            </execution>
                        </executions>
                        <configuration>
                            <imageName>${env.DOCKER_REGISTRY_NAME}/${docker.image.prefix}/${project.artifactId}</imageName>
                            <imageTags>
                                <imageTag>${project.version}</imageTag>
                                <imageTag>latest</imageTag>
                            </imageTags>
                            <forceTags>true</forceTags>
                            <dockerDirectory>${project.artifactId}/src/main/docker</dockerDirectory>
                            <serverId>docker-registry</serverId>
                            <registryUrl>${env.DOCKER_REGISTRY}</registryUrl>
                            <dockerCertPath>${env.DOCKER_CERT_PATH}</dockerCertPath>
                            <resources>
                                <resource>
                                    <targetPath>/</targetPath>
                                    <directory>${project.build.directory}</directory>
                                    <include>${project.build.finalName}.jar</include>
                                </resource>
                            </resources>
                            <buildArgs>
                                <JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
                            </buildArgs>
                        </configuration>
                    </plugin>
                </plugins>
            </build>

            <activation>
                <property>
                    <name>env</name>
                    <value>docker</value>
                </property>
            </activation>
        </profile>
    </profiles>

其中

env.DOCKER_REGISTRY_NAME = hub.xx.com:10443
env.DOCKER_REGISTRY= https://hub.xx.com:10443
env.DOCKER_CERT_PATH = E:\Doc\cert\hub.xx.com
env.DOCKER_HOST =  tcp://172.168.1.1:2375

注意:
最终的镜像一定要是~/~/~:~ 格式,如

${docker.repostory}/${docker.registry.name}/${project.artifactId}:${project.version}

mvn的setting配置
技术图片

开放docker的2375端口方法

vim /usr/lib/systemd/system/docker.service
ExecStart=/usr/bin/dockerd -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock

#重新加载docker配置
systemctl daemon-reload // 1,加载docker守护线程
systemctl restart docker // 2,重启docker

技术图片

springboot项目打包docker镜像maven插件

标签:als   pos   https   mave   配置   set   ecs   systemd   sock   

原文地址:https://www.cnblogs.com/zhangww/p/13049343.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!