docker

docker service

2019-09-27  本文已影响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
上一篇下一篇

猜你喜欢

热点阅读