docker资源小结

1.  Rancher 快速上手指南操作(1)

http://blog.chinaunix.net/uid-29757900-id-5676591.html

我这里下载了将近一个小时。

docker run -d --restart=always -p 8080:8080 rancher/server

2. https://yq.aliyun.com/articles/57143

https://www.alibabacloud.com/help/zh/doc-detail/48496.htm

reschedule:on-node-failure意思是在节点失效的时候 会重新调度这个容器。

com.docker.swarm.reschedule-policies:"[\"on-node-failure\"]"

environment:

-reschedule:on-node-failure

3. web服务,怎样做到不间断服务的更新?
用docker+jenkins+git+fabric做了一套自动化部署的小项目,公司中有web服务已经在docker中运行,怎样做到不间断服务更新项目代码?

前面挂一个nginx做代理,每次更新nginx配置反代到不同端口,然后所有流量切过去之后干掉老的docker就行了

4.  UI监控Swarm

docker service create \

--name portainer \

--publish 9000:9000 \

--replicas=1 \

--constraint 'node.role == manager' \

--mount type=bind,src=//var/run/docker.sock,dst=/var/run/docker.sock \

portainer/portainer \

-H unix:///var/run/docker.sock

5. Shipyard   https://shipyard-project.com/

你可能感兴趣的:(docker资源小结)