Compare commits

...

3 Commits

@ -0,0 +1,8 @@
pipeline:
docker:
image: plugins/docker
repo: bunix42/duck-dns
tags:
- latest
secrets: [ docker_username, docker_password ]

@ -0,0 +1,11 @@
FROM alpine
MAINTAINER Hanjo Meinhardt <hanjo@bunix.de>
RUN apk add -U --no-cache curl
COPY renew-dns.sh /etc/periodic/15min/renew-dns.sh
ENV VERBOSE false
CMD /etc/periodic/15min/renew-dns.sh && crond -f -d 8

@ -0,0 +1,3 @@
#!/bin/sh
curl -s "https://www.duckdns.org/update?domains=$DOMAINS&token=$TOKEN&VERBOSE=$VERBOSE"
Loading…
Cancel
Save