This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-playbooks/deploy.yml
2024-06-09 23:36:01 +00:00

15 lines
371 B
YAML

---
- name: Deploy application
hosts: "{{ target_host }}"
vars:
repo_path: "/home/{{ ansible_user }}/Auto-Homelab/{{ folder }}"
tasks:
- name: Ensure the repository is up-to-date
shell: git pull
args:
chdir: "{{ repo_path }}"
- name: Restart services
command: docker compose up -d
args:
chdir: "{{ repo_path }}"