docker添加jar包_本地jar包上传docker容器

先安装docker的注册服务器:

[root@VM_0_7_centos ~]# docker run -d -p 5000:5000 --restart=always --name registry2 registry:2

开启docker远程api:

[root@VM_0_7_centos ~]# vi /usr/lib/systemd/system/docker.service

原来文件描述符fd方式改为tcp,指定端口2375:

让docker支持http上传镜像文件(我们本地的jar包):

[root@VM_0_7_centos ~]# echo '{ "insecure-registries":["110.111.119.10:5000"] }' > /etc/docker/daemon.json

注意:这里的110.111.119.10是你docker所在服务器的ip。

重启docker:

[root@VM_0_7_centos ~]# systemctl daemon-reload && systemctl restart docker

本地jar包的pom文件引入docker插件:

org.springframework.boot

spring-boot-maven-plugin

com.spotify

docker-maven-plugin

1.1.0

build-image

package

build

wlf/${project.artifactId}:${project.version}

http://110.111.119.10:2375

java:8

["java", "-jar", "-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]

/

${project.build.directory}

${project.build.finalName}.jar

注意:dockerHost的ip就是docker所在服务器的ip,端口号是2375。直接跑maven:

[INFO] Building wlf-test 1.0-SNAPSHOT

[INFO]------------------------------------------------------------------------[INFO]

[INFO]--- maven-resources-plugin:3.1.0:resources (default-resources) @ wlf-test ---[INFO] Using'UTF-8'encoding to copy filtered resources.

[INFO] Copying3resources

[INFO] Copying1resource

[INFO]

[INFO]--- maven-compiler-plugin:3.8.1:compile (default-compile) @ wlf-test ---[INFO] Nothing to compile- all classes are up to date[INFO]

[INFO]--- maven-resources-plugin:3.1.0:testResources (default-testResources) @ wlf-test ---[INFO] Using'UTF-8'encoding to copy filtered resources.

[INFO] skip non existing resourceDirectory E:\workspace\wlf\wlf-test\src\test\resources

[INFO]

[INFO]--- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ wlf-test ---[INFO] Nothing to compile- all classes are up to date[INFO]

[INFO]--- maven-surefire-plugin:2.22.2:test (default-test) @ wlf-test ---[INFO] Tests are skipped.

[INFO]

[INFO]--- maven-jar-plugin:3.1.2:jar (default-jar) @ wlf-test ---[INFO] Building jar: E:\workspace\wlf\wlf-test\target\wlf-test-1.0-SNAPSHOT.jar

[INFO]

[INFO]--- spring-boot-maven-plugin:2.1.7.RELEASE:repackage (repackage) @ wlf-test ---[INFO] Replacing main artifact with repackaged archive

[INFO]

[INFO]--- docker-maven-plugin:1.1.0:build (build-image) @ wlf-test ---[INFO] Using authentication suppliers: [ConfigFileRegistryAuthSupplier]

[INFO] Copying E:\workspace\wlf\wlf-test\target\wlf-test-1.0-SNAPSHOT.jar -> E:\workspace\wlf\wlf-test\target\docker\wlf-test-1.0-SNAPSHOT.jar

[INFO] Building image wlf/wlf-test:1.0-SNAPSHOT

Step1/3 : FROM java:8

--->d23bdf5b1b1b

Step2/3 : ADD /wlf-test-1.0-SNAPSHOT.jar //

--->1c5c2b47b5fb

Step3/3 : ENTRYPOINT ["java", "-jar", "-Dspring.profiles.active=prod","/wlf-test-1.0-SNAPSHOT.jar"]---> Running in3a0ae2be2945

Removing intermediate container 3a0ae2be2945--->372d06d19472

ProgressMessage{id=null, status=null, stream=null, error=null, progress=null, progressDetail=null}

Successfully built 372d06d19472

Successfully tagged wlf/wlf-test:1.0-SNAPSHOT

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值