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

16 lines
345 B
YAML
Raw Normal View History

2024-06-09 15:21:52 -04:00
---
- name: Deploy application
hosts: "{{ target_host }}"
vars:
repo_path: /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 }}"