feat: add listmonk mailing list service

This commit is contained in:
Phillip Skentelbery
2026-06-27 17:57:03 -06:00
parent e47465c34d
commit 767ff9dae6
7 changed files with 90 additions and 2 deletions
@@ -0,0 +1,19 @@
- name: make listmonk directories
ansible.builtin.file:
path: "{{ item }}"
state: directory
loop:
- /opt/stacks/listmonk
- name: Template out the compose file
ansible.builtin.template:
src: listmonk-compose.yml.j2
dest: /opt/stacks/listmonk/compose.yml
owner: root
mode: 644
- name: deploy listmonk stack
community.docker.docker_compose_v2:
project_src: /opt/stacks/listmonk
files:
- compose.yml
+5 -1
View File
@@ -7,4 +7,8 @@
- name: Install postiz
import_tasks: postiz.yml
tags: postiz
tags: postiz
- name: Install listmonk
import_tasks: listmonk.yml
tags: listmonk