https://github.com/sebastianfeldmann/ansible-deployment
Some basic ansible scripts to deploy web apps
https://github.com/sebastianfeldmann/ansible-deployment
Last synced: 3 months ago
JSON representation
Some basic ansible scripts to deploy web apps
- Host: GitHub
- URL: https://github.com/sebastianfeldmann/ansible-deployment
- Owner: sebastianfeldmann
- License: mit
- Created: 2016-01-06T20:12:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-08T11:00:29.000Z (over 9 years ago)
- Last Synced: 2025-01-06T08:44:01.325Z (5 months ago)
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deployment with Ansible
This repository contains some basics ideas to deploy web apps.
For more detailed information have a look at my related [blog post](http://sebastian-feldmann.info/software-deployment-with-ansible/).## Usage Examples
Deploy your code to all configured web servers.
ansible-playbook -i inv/integration/hosts --extra-vars "version=1.0.1 app=/some/local/dir/app/" play.my-project.yml
Rollback to a previously deployed version.
ansible-playbook -i inv/integration/hosts --extra-vars "version=1.0.0" -tags rollback play.my-project.yml