13 lines
364 B
YAML
13 lines
364 B
YAML
|
- name: Start Gitea
|
||
|
community.docker.docker_compose:
|
||
|
project_src: /opt/gitea
|
||
|
register: docker_compose
|
||
|
|
||
|
- name: Check if {{ gitea.hostname }}.{{ gitea.domain }} is available and returning status 200
|
||
|
ansible.builtin.uri:
|
||
|
url: "https://{{ gitea.hostname }}.{{ gitea.domain }}"
|
||
|
register: _result
|
||
|
until: _result.status == 200
|
||
|
retries: 30
|
||
|
delay: 2
|