继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

用docker安装的Jenkins构建SpringBoot的docker镜像

慕哥9229398
关注TA
已关注
手记 1282
粉丝 199
获赞 913

1、在目录下创建Dockerfile

webp

image.png

2、Dockerfile文件内容:

FROM java:8MAINTAINER 457030599@qq.comVOLUME /tmp
ARG JAR_FILE
COPY guns-rest-0.0.1.jar app.jar
RUN bash -c 'touch /app.jar'EXPOSE 80ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","-Denv=DEV","/app.jar"]

3、远程登陆服务器,执行脚本

a、首先在系统设置里面一个远程host


webp

image.png


b、在配置里的Post Step选Execute shell script on remote host using ssh


webp

image.png

4、详细脚本内容

docker stop guns-rest #停掉容器docker rm guns-rest #删除容器\cp /opt/data/jenkins/workspace/my-wechat/guns-rest/target/guns-rest-0.0.1.jar /opt/data/jenkins/workspace/my-wechat/docker/guns-rest-0.0.1.jar #jar包复制到dockerfile相同目录下cd /opt/data/jenkins/workspace/my-wechat/guns-rest/docker
docker build -t hsshy/guns-rest . #构建镜像docker run --name guns-rest -p 80:80 -d hsshy/guns-rest #运行容器



作者:yellow_han
链接:https://www.jianshu.com/p/b1825a4ab0a3


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP

相关阅读

Rancher docker集群