Replace gitlab with gitea

Leave gitlab in place for a bit in case I need to get at data
This commit is contained in:
Jake Howard
2021-01-18 20:14:38 +00:00
parent f519b18d38
commit 41915ec69c
8 changed files with 189 additions and 1 deletions

View File

@ -0,0 +1,25 @@
- name: Create install directory
file:
path: /opt/gitea
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install config
template:
src: files/gitea.ini
dest: "{{ app_data_dir }}/gitea/app.ini"
mode: "0644"
notify: restart gitea
become: true
- name: Install compose file
template:
src: files/docker-compose.yml
dest: /opt/gitea/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
notify: restart gitea
become: true