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

32 lines
748 B
YAML
Raw Normal View History

2022-12-29 11:32:46 +00:00
- 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 }}/files/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 }}"