美文网首页docker
docker service

docker service

作者: 胸口砕大石 | 来源:发表于2019-09-27 16:11 被阅读0次
发布服务
$ docker service create \
     --replicas 1 \
     --name sms \
     --config source=srpingboot.application.properties,target=/application.properties \
     --publish published=80,target=80 \
     192.168.7.70:5000/sms:3.0 \
     --spring.config.location=file:/application.properties 

--config 将 docker config 安装到容器的文件系统,路径 /application.yaml

--spring.config.location=file:/application.yaml 指定 Spring Boot 应用启动使用的配置文件为 /application.yaml

更新服务到指定版本
$ docker service update --image 192.168.7.70:5000/blastplatform:1.3 blastplatform
服务回滚到上一个版本
$ docker service update --rollback blastplatform

相关文章

网友评论

    本文标题:docker service

    本文链接:https://www.haomeiwen.com/subject/lylauctx.html