Add News section and update DiscountOffice config in Dashy
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 8s
Nix Format Check / check-format (push) Failing after 1m8s
Python Lint Check / check-python (push) Failing after 6s

Remove config change trigger from Dashy restart tasks
This commit is contained in:
2025-08-29 19:21:30 +02:00
parent d82a7247cd
commit 707a3c0cb7
2 changed files with 22 additions and 2 deletions

View File

@@ -34,11 +34,11 @@
- name: Stop Dashy service
ansible.builtin.command: docker compose -f "{{ dashy_service_dir }}/docker-compose.yml" down --remove-orphans
when: dashy_compose.changed or dashy_config.changed
when: dashy_compose.changed
- name: Start Dashy service
ansible.builtin.command: docker compose -f "{{ dashy_service_dir }}/docker-compose.yml" up -d
when: dashy_compose.changed or dashy_config.changed
when: dashy_compose.changed
tags:
- services
- dashy