Skip to content
Snippets Groups Projects
Commit 86cffa46 authored by void's avatar void
Browse files

berechtigungen für esphome gefixt

parent 08555a45
No related branches found
No related tags found
No related merge requests found
--- ---
- name: "create folder struct for {{ servicename }}" - name: "create folder struct for {{ servicename }}"
ansible.builtin.file: ansible.builtin.file:
path: "{{ basedir }}/data/" path: "{{ item }}"
state: "directory" state: "directory"
recurse: yes recurse: yes
owner: 1000
group: 1000
with_items:
- "{{ basedir }}/data/"
- name: "copy docker-compose file for {{ servicename }}" - name: "copy config files file for {{ servicename }}"
ansible.builtin.template: ansible.builtin.template:
src: docker-compose.yml src: docker-compose.yml
dest: "{{ basedir }}/docker-compose.yml" dest: "{{ item }}"
mode: '0755' mode: '0755'
with_items:
- "{{ basedir }}/docker-compose.yml"
- name: "start {{ servicename }} with docker-compose" - name: "start {{ servicename }} with docker-compose"
community.docker.docker_compose: community.docker.docker_compose:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment