Added tasks.md (and fixed an issue in the grist compose file)
This commit is contained in:
@ -74,4 +74,7 @@
|
||||
import_tasks: gotosocial.yml
|
||||
|
||||
- name: Install grist
|
||||
import_tasks: grist.yml
|
||||
import_tasks: grist.yml
|
||||
|
||||
- name: Install tasksmd
|
||||
import_tasks: tasksmd.yml
|
19
roles/docker/tasks/tasksmd.yml
Normal file
19
roles/docker/tasks/tasksmd.yml
Normal file
@ -0,0 +1,19 @@
|
||||
- name: make tasksmd directories
|
||||
ansible.builtin.file:
|
||||
path: "{{ item}}"
|
||||
state: directory
|
||||
loop:
|
||||
- /opt/stacks/tasksmd
|
||||
|
||||
- name: copy tasksmd compose file
|
||||
ansible.builtin.copy:
|
||||
src: tasksmd-compose.yml
|
||||
dest: /opt/stacks/tasksmd/compose.yml
|
||||
owner: root
|
||||
mode: 644
|
||||
|
||||
- name: deploy tasksmd stack
|
||||
community.docker.docker_compose_v2:
|
||||
project_src: /opt/stacks/tasksmd
|
||||
files:
|
||||
- compose.yml
|
Reference in New Issue
Block a user