17 lines
368 B
YAML
17 lines
368 B
YAML
---
|
|
- name: Rebuild authcheck-container
|
|
ansible.builtin.command:
|
|
argv:
|
|
- podman
|
|
- build
|
|
- -t
|
|
- authcheck
|
|
- /usr/local/src/docker-authcheck
|
|
become: true
|
|
become_user: authcheck
|
|
notify: Restart authcheck-container
|
|
|
|
- name: Restart authcheck-container
|
|
ansible.builtin.service:
|
|
name: authcheck-container
|
|
state: restarted
|