• Stars
    star
    215
  • Rank 183,340 (Top 4 %)
  • Language
    Shell
  • License
    MIT License
  • Created over 2 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Docker volume backup or snapshot utility command

docker-volume-snapshot

Docker volume snapshot utility command

Installation

sudo curl -SL https://raw.githubusercontent.com/junedkhatri31/docker-volume-snapshot/main/docker-volume-snapshot -o /usr/local/bin/docker-volume-snapshot
sudo chmod +x /usr/local/bin/docker-volume-snapshot

Usage

docker-volume-snapshot (create|restore) source destination
  create         create snapshot file from docker volume
  restore        restore snapshot file to docker volume
  source         source path
  destination    destination path

Example

docker-volume-snapshot create xyz_volume xyz_volume.tar
docker-volume-snapshot restore xyz_volume.tar xyz_volume

Compression

Supports tar's compression algorithms automatically based on the file extention, for eaxmple .tar.gz

docker-volume-snapshot create xyz_volume xyz_volume.tar.gz
docker-volume-snapshot restore xyz_volume.tar.gz xyz_volume