ansible/roles/php4dvd/handlers/main.yml

17 lines
354 B
YAML

---
- name: Rebuild php4dvd-container
ansible.builtin.command:
argv:
- podman
- build
- -t
- php4dvd
- /usr/local/src/docker-php4dvd
become: true
become_user: php4dvd
notify: Restart php4dvd-container
- name: Restart php4dvd-container
ansible.builtin.service:
name: php4dvd-container
state: restarted