Files
wedding-site/ansible/deploy.yml
MH.Dmitrii 7b4f17ae79
Some checks failed
Build Docker / build (push) Has been cancelled
feature ansible 0.0045
2026-03-01 02:34:28 +03:00

23 lines
524 B
YAML

- hosts: servers
become: yes
tasks:
- name: Install Docker
shell: curl -fsSL https://get.docker.com | sh
args:
creates: /usr/bin/docker
- name: Install git
apt:
name: git
state: present
update_cache: yes
- name: Clone repo
git:
repo: ${GITEA_INSTANCE_URL} //как то передавать переменные
dest: /opt/infra
- name: Start docker compose
shell: docker compose up -d
args:
chdir: /opt/infra