Added gotosocial and added an attempted fix for the authentik redis nonsense

This commit is contained in:
2024-08-15 09:28:42 -06:00
parent 6b36a66dcc
commit bff9f62093
7 changed files with 69 additions and 13 deletions

View File

@ -1,4 +1,4 @@
- name: make caddy directories
- name: make gitea directories
ansible.builtin.file:
path: "{{ item}}"
state: directory

View File

@ -0,0 +1,19 @@
- name: make gotosocial directories
ansible.builtin.file:
path: "{{ item}}"
state: directory
loop:
- /opt/stacks/gotosocial
- name: Template out the compose file
ansible.builtin.template:
src: gotosocial-compose.yml.j2
dest: /opt/stacks/gotosocial/compose.yml
owner: root
mode: 644
- name: deploy gotosocial stack
community.docker.docker_compose_v2:
project_src: /opt/stacks/gotosocial
files:
- compose.yml

View File

@ -70,5 +70,6 @@
- name: Install authentik
import_tasks: authentik.yml
#- name: Install openwebui
# import_tasks: openwebui.yml
- name: Install gotosocial
import_tasks: gotosocial.yml