[role] add kitchenowl

This commit is contained in:
Sophia 2025-08-14 22:39:43 +02:00 committed by Sophia Gütschow
commit 4a617ce50a
Signed by untrusted user: sophia
GPG key ID: F4E301929D289C32
5 changed files with 132 additions and 0 deletions

View file

@ -0,0 +1,18 @@
- name: docker compose down
community.docker.docker_compose_v2:
project_src: "{{ kitchenowl_path }}"
state: absent
- name: docker compose up
community.docker.docker_compose_v2:
project_src: "{{ kitchenowl_path }}"
- name: docker compose stop
community.docker.docker_compose_v2:
project_src: "{{ kitchenowl_path }}"
state: stopped
- name: docker compose restart
community.docker.docker_compose_v2:
project_src: "{{ kitchenowl_path }}"
state: restarted