This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# see: https://github.com/RMerl/asuswrt-merlin/wiki/Custom-DDNS#google-domains | |
# this script could go into /jffs/scripts of a router running Merlin's asus-wrt firmware | |
# you must then choose the "Custom" option for DDNS in the router's web interface | |
# it registers the WAN IP of the router with Google Domains' DDNS system | |
# get your login info from yout Google Domains dashboard | |
IP=$1 | |
USER= | |
PASS= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# docker cleanup (if you're not careful, docker loves to eat disk space) | |
# bash <(curl https://gist.githubusercontent.com/greysAcademicCode/a46ea54e902cff5c3f81/raw/33151362a2e97b07db8e8dd82f68e4fbb0702097/cleanDocker.sh) | |
echo "Cleaning up unneeded docker images." | |
docker stop $(docker ps -a -q) | |
docker rm $(docker ps -a -q) | |
docker images | grep '<none>' | awk '{print $3}' | xargs docker rmi || echo "No docker cleaning needed." |