inital release of dockerized curl command to update duckdns entry

このコミットが含まれているのは:
2018-03-15 21:29:25 +01:00
committed by Hanjo Meinhardt
コミット 1fca49d406
2個のファイルの変更12行の追加0行の削除
+9
ファイルの表示
@@ -0,0 +1,9 @@
FROM alpine
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
実行可能ファイル
+3
ファイルの表示
@@ -0,0 +1,3 @@
#!/bin/sh
curl -s "https://www.duckdns.org/update?domains=$DOMAINS&token=$TOKEN&VERBOSE=$VERBOSE"