mirror of
https://git.local.zernis.ch/simon/homeserver.zernis.ch.git
synced 2025-12-15 21:09:40 +01:00
19 lines
405 B
YAML
19 lines
405 B
YAML
---
|
|
- name: Create docker dir if it does not exist
|
|
become: false
|
|
ansible.builtin.file:
|
|
path: /home/{{ user['name'] }}/docker/
|
|
state: directory
|
|
mode: '0755'
|
|
|
|
- name: Deploy docker apps
|
|
ansible.builtin.include_tasks: "tasks/npm.yml"
|
|
# loop:
|
|
# - audiobookshelf
|
|
# - authelia
|
|
# - bookstack
|
|
# - gitea
|
|
# - nextcloud
|
|
# - npm
|
|
# - vaultwarden
|