- name: Update all servers
hosts: starkingdoms_prod_servers
vars:
compose_dir: /home/stk-deploy
tasks:
- name: Ensure host connectivity
ansible.builtin.ping:
- name: Update the server
ansible.builtin.shell:
cmd: docker-compose pull
chdir: "{{ compose_dir }}"