docker-maven-plugin 完全免Dockerfile 文件

23 篇文章 1 订阅

docker-maven-plugin 完全免Dockerfile 文件

 

# DockerSpringBootPlugin

  docker-maven-plugin 完全免Dockerfile 文件

  使用docker-maven-plugin 进行完全免 Dockerfile 文件 

  注意 EXPOSE 在spring boot 中不起作用

 

  详细 

  https://github.com/spotify/docker-maven-plugin  

  

  本机不安装 docker  连接其他主机或虚拟机  

   需要添加两个额外配置

      <dockerHost>https://ip:2376</dockerHost>

      <dockerCertPath>证书地址</dockerCertPath>

  这两个地址可以 在 docker 环境变量中查询到  
  如果是 docker-machine 创建的虚拟机 可以同 env 连接的的时候 会显示

  

  
Mvnen :

构建镜像


  mvn clean package docker:build

构建镜像并且推送到镜像表

 

  mvn clean package docker:build -DpushImage

 

复制代码
 <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>com.spotify</groupId>
                <artifactId>docker-maven-plugin</artifactId>
                <configuration>
                    <imageName>${docker.image.prefix}/${project.artifactId}</imageName>
                    <!--<dockerDirectory>src/main/docker</dockerDirectory>-->
                    <baseImage>java:8</baseImage>
                    <entryPoint>["java", "-jar", "/${project.build.finalName}.jar"]</entryPoint>
                    <resources>
                        <resource>
                            <targetPath>/</targetPath>
                            <directory>${project.build.directory}</directory>
                            <include>${project.build.finalName}.jar</include>
                        </resource>
                    </resources>
                </configuration>
            </plugin>
        </plugins>
    </build>
复制代码

 

  建议  

    如果自己或公司的  docker镜像仓库   ${docker.image.prefix} 设置为自己的 自己的名称  后续上传的时候 就不需要 改名称 了  

     如果自己不想搭建 公司也没有 但是想 可以随时获取的 可以使用 阿里云的 docker  镜像管理   

实例 GitHub  https://github.com/atliwen/DockerSpringBootPlugin

 

使用私有 docker 镜像仓库 

复制代码
<properties>
<docker.maintainer>统一Manven 版本依赖</docker.maintainer>
<docker.imageName>parent</docker.imageName>
</properties>

<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <configuration> <serverId>docker-hub</serverId> <registryUrl>https://10.10.6.50:5000</registryUrl> <dockerHost>https://10.10.12.205:2376</dockerHost> <dockerCertPath>C:\Users\admin\.docker\machine\machines\manager</dockerCertPath> <imageName>10.10.6.50:5000/${docker.imageName}:${project.version}</imageName> <baseImage>java:8</baseImage> <maintainer>${docker.maintainer}</maintainer> <volumes>/tmp</volumes> <entryPoint>["java", "-jar", "/${project.build.finalName}.jar"]</entryPoint> <resources> <resource> <targetPath>/</targetPath> <directory>${project.build.directory}</directory> <include>${project.build.finalName}.jar</include> </resource> </resources> </configuration> </plugin> </plugins> </build>
复制代码

 

注意:

  

   在子Maven 项目中  写 定义  镜像名称 和项目名称   

   

   docker  镜像 TAG  为版本号  <version>0.0.1-SNAPSHOT</version>

  

<properties>
<docker.maintainer> EDI 订单处理服务</docker.maintainer>
<docker.imageName>dj-atliwen-ediwebapi</docker.imageName>
</properties>

 

   登录私有镜像仓库的配置

 <serverId>docker-hub</serverId>
 <registryUrl>https://10.10.6.50:5000</registryUrl>
serverId 是Maven 中的配置   配置  Maven  settings.xml 中 server 节点

复制代码
<servers>
  <server>
    <id>docker-hub</id>
    <username>foo</username>
    <password>secret-password</password>
    <configuration>
      <email>foo@foo.bar</email>
    </configuration>
  </server>
</servers>

// email 也是必须填写的
复制代码

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值