blob: 4390689ea8441a84aa7b2a24c83455c586aecae5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
---
- name: Gather the package facts
ansible.builtin.package_facts:
manager: auto
- name: Verify Docker and compose are available
ansible.builtin.assert:
that:
- "'docker-ce' in ansible_facts.packages"
- "'docker-compose-plugin' in ansible_facts.packages"
fail_msg: "Docker and compose plugin are not installed"
- name: Create Gitea directories
ansible.builtin.file:
path: "{{ gitea_root_dir }}"
state: directory
mode: '0755'
- name: Deploy Gitea stack using compose v2
community.docker.docker_compose_v2:
project_src: "{{ playbook_dir }}/../../docker/compose/gitea"
state: present
pull: "policy"
recreate: always
- name: Verify that gitea and db services are running
ansible.builtin.assert:
that:
- gitea_container.State == 'running'
- db_container.State == 'running'
vars:
gitea_container: >-
{{ output.containers | selectattr("Service", "equalto", "gitea") | first }}
db_container: >-
{{ output.containers | selectattr("Service", "equalto", "db") | first }}
...
|