inital release of dockerized curl command to update duckdns entry

이 커밋은 다음에 포함됨:
2018-03-15 21:29:25 +01:00
커밋한 사람 Hanjo Meinhardt
부모 00269a5e63
커밋 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"