Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am ricardomiguelfaria on github.
  • I am ricardofaria (https://keybase.io/ricardofaria) on keybase.
  • I have a public key whose fingerprint is 69EA A468 B3F7 DAB3 C9ED 9B11 6B74 AC70 AFF0 416A

To claim this, I am signing this object:

@ricardomiguelfaria
ricardomiguelfaria / backup_all_docker_images.sh
Last active August 11, 2023 20:24 — forked from dieterrosch/backup_all_docker_images.sh
A bash script to backup all docker images to files
#!/usr/bin/sh
if [[ $# -eq 0 ]]; then
echo "Usage: $0 <backup_dir>"
exit
fi
destination=$1
if ! type "pv" > /dev/null; then
echo 'pv' command not found on your system, install it to get a nice progress indicator...
else