This repository has been archived on 2023-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
max/roles/gitea/tasks/main.yml
2023-01-03 19:07:04 +01:00

31 lines
752 B
YAML

- name: Create app directory
file:
path: /apps/gitea
state: directory
- name: Copy Docker Compose script
copy:
src: "{{ role_path }}/files/docker-compose.yml"
dest: /apps/gitea/docker-compose.yml
- name: Create data directory
file:
path: /data/gitea
state: directory
owner: 1000
group: 1000
- name: Copy conf directory
file:
path: /apps/gitea/conf
state: directory
owner: 1000
group: 1000
- name: Copy app.ini
template:
src: "{{ role_path }}/templates/app.ini"
dest: /apps/gitea/conf/app.ini
register: config
- name: Start the Docker Compose
community.docker.docker_compose:
project_src: /apps/gitea
pull: true
remove_orphans: true
restarted: "{{ config.changed }}"