Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vfarcic/docker-swarm
https://github.com/vfarcic/docker-swarm
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/vfarcic/docker-swarm
- Owner: vfarcic
- Created: 2015-05-06T00:38:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-29T13:22:05.000Z (over 8 years ago)
- Last Synced: 2024-08-03T06:05:17.465Z (3 months ago)
- Language: CSS
- Size: 15 MB
- Stars: 52
- Watchers: 7
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository contains code used in the **Scaling To Infinity with Docker Swarm, Docker Compose and Consul** article series:
* [A Taste of What Is To Come](http://technologyconversations.com/2015/07/02/scaling-to-infinity-with-docker-swarm-docker-compose-and-consul-part-14-a-taste-of-what-is-to-come/)
* [Manually Deploying Services](http://technologyconversations.com/2015/07/02/scaling-to-infinity-with-docker-swarm-docker-compose-and-consul-part-24-manually-deploying-services/)
* [Blue-Green Deployment, Automation and Self-Healing Procedure](http://technologyconversations.com/2015/07/02/scaling-to-infinity-with-docker-swarm-docker-compose-and-consul-part-34-blue-green-deployment-automation-and-self-healing-procedure/)
* [Scaling Individual Services](http://technologyconversations.com/2015/07/02/scaling-to-infinity-with-docker-swarm-docker-compose-and-consul-part-44-scaling-individual-services/)###### Note for Windows users:
If you run into issues with ansible complaining about executable permissions, try modifying the `Vagrantfile`'s `synced_folder` entry from this:
```ruby
config.vm.synced_folder ".", "/vagrant"
```to this:
```ruby
config.vm.synced_folder ".", "/vagrant", mount_options: [“dmode=700,fmode=600″]
```