replace miniflux with freshrss

This commit is contained in:
Pim Kunis 2023-01-19 00:10:07 +01:00
parent c6f47e454d
commit 4ea3c8dfb9
4 changed files with 64 additions and 1 deletions

View file

@ -0,0 +1,17 @@
- name: Create app directory
file:
path: "{{ service_dir }}"
state: directory
- name: Copy Docker Compose script
template:
src: "{{ role_path }}/templates/docker-compose.yml.j2"
dest: "{{ service_dir }}/docker-compose.yml"
- name: Create data directory
file:
path: "{{ data_dir }}"
state: directory
- name: Start the Docker Compose
docker_compose:
project_src: "{{ service_dir }}"
pull: true
remove_orphans: true