$ 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=dockerThe following command will update application to the lastest version which is in the master branch, which is HEAD:
$ ansible-playbook update_app.yml --tags=updatingIf 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