add RSS aggregator miniflux

This commit is contained in:
Pim Kunis 2023-01-17 21:14:57 +01:00
parent 64709cab98
commit 38f6eade56
7 changed files with 77 additions and 2 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