$ ansible-playbook server_setup.yml --tags=setupping
$ ansible-playbook server_setup.yml --tags=setupping --skip-tags=app
$ ansible-playbook server_setup.yml --tags=setupping --skip-tags=docker
The following command will update application to the lastest version which is in the master branch, which is HEAD:
$ ansible-playbook update_app.yml --tags=updating
If you want to update application to the specific release number use the next command:
$ ansible-playbook update_app.yml --tags=updating -e money_tracker.git_version=v1.1.1
$ ansible-playbook remove_app.yml --tags=removing