springboot项目打包docker镜像maven插件
<!-- 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
相关推荐
王道革 2020-11-25
bwyyziq 2020-11-22
pigsmall 2020-11-19
changecan 2020-11-19
helloWorldAndYou 2020-11-16
nginxs 2020-11-14
红石丶 2020-11-13
WanKaShing 2020-11-12
yangkang 2020-11-12
滴水穿石点石成金 2020-11-12
张荣珍 2020-11-12
wuxunanjing 2020-11-11
魅惑青花瓷 2020-11-11
lihongtai 2020-11-09
yangkang 2020-11-09
worldsnow 2020-11-06
MichaelJScofield 2020-11-06
TaoTaoFu 2020-11-06