mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-15 08:27:19 +00:00
a647fbdad4
Removed whitespace from watchtower.yml
13 lines
No EOL
326 B
YAML
13 lines
No EOL
326 B
YAML
---
|
|
- name: Watchtower Docker Container
|
|
docker_container:
|
|
name: watchtower
|
|
image: v2tec/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 |