ansible-nas/roles/watchtower/tasks/main.yml
2021-02-21 19:50:07 +00:00

13 lines
332 B
YAML

---
- name: Watchtower Docker Container
docker_container:
name: watchtower
image: containrrr/watchtower
pull: true
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
env:
TZ: "{{ ansible_nas_timezone }}"
command: "{{ watchtower_command }}"
restart_policy: unless-stopped
memory: 1g