feat: initial commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-01-15 21:32:00 +01:00
commit e53a7da36c
40 changed files with 516 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
- name: start | ensure gitea is up and running
service:
name: gitea
state: started
- name: start | wait for gitea up and running
command: "docker ps"
register: result
retries: 60
changed_when: no
until: "'gitea/gitea:{{ gitea_version}}' in result.stdout"
tags:
- skip_ansible_lint