if [[ $EUID -eq 0 ]]; then
echo "You are running this script as root"
read -r -p "Are you sure? [y/N] " response
case "$response" in
[yY])
#do_something $@
;;
*)
genpassphrase() { echo $(curl -fSsL https://raw.githubusercontent.com/rohan-molloy/generate-hostnames/master/words.txt | shuf -n4 | tr '\n' '-')$(($RANDOM%999)); };
I have quite a few stopped containers. I would like to delete the volumes belonging to some of them. Docker has a volume prune
command that will delete ALL the volumes. Annoyingly, it does not have a --dry-run
options o you're taking a shot in the dark. I made this snippet to help gain more context.
#!/bin/bash
for name in $(docker ps -a |awk 'NR>1{print $NF}'); do
vols=$(docker inspect $name | jq '.[].Mounts[]|select(.Type=="volume")'|jq -r .Name|tr '\n' ' ');
printf "%s=( %s );\n" "$name" "$vols";
done
# d899b42486eb805b8e432c5758568db487c6bcfc067d6ca7e1292a5a66d66de6 unbound.conf | |
server: | |
# Listen on tcp 443,853 | |
interface: 0.0.0.0@853 | |
interface: 0.0.0.0@443 | |
# Allow from anywhere | |
access-control: 0.0.0.0/0 allow | |
access-control: ::0/0 allow |
vmware: | |
- | |
name: 'VMware NSX for vSphere' | |
serial: null | |
url: | |
- 'http://software.onthehub.com/shared/publisher/VMware/VMware-NSX-Manager-6.2.0-2986609.ova' | |
- | |
name: 'VMware vRealize Suite 7 Enterprise' | |
serial: null | |
url: |
# Serve requests only for virtual host set in environment variable | |
{$CADDYHOST} | |
# Bind Virtual Host to address set in environment | |
bind {$CADDYBIND} | |
# Registration email for automated issuing of Lets Encrypt certs | |
tls {$CADDYEMAIL} | |
# Define the web server root (using environment variable) |