Added gotosocial and added an attempted fix for the authentik redis nonsense
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
- name: make caddy directories
|
||||
- name: make gitea directories
|
||||
ansible.builtin.file:
|
||||
path: "{{ item}}"
|
||||
state: directory
|
||||
|
19
roles/docker/tasks/gotosocial.yml
Normal file
19
roles/docker/tasks/gotosocial.yml
Normal 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
|
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user