Set up ddclient

This commit is contained in:
Salt 2021-12-21 11:16:40 -06:00
parent 5e7b8bb881
commit d7c3f97797
2 changed files with 14 additions and 0 deletions

View File

@ -13,6 +13,7 @@
include_tasks: tasks/{{ item }}
with_items:
- app/gulagbot.yml
- app/ddclient.yml
tags: [ always ]
roles:
- role: backup

View File

@ -0,0 +1,13 @@
# vim:ft=ansible:
- name: docker deploy ddclient
docker_container:
name: ddclient
state: started
image: linuxserver/ddclient:latest
restart_policy: unless-stopped
pull: yes
env:
TZ: America/Chicago
volumes:
- /data/ddclient:/config
tags: [ docker, ddclient ]