mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-18 20:39:36 +02:00
7 lines
No EOL
306 B
Bash
7 lines
No EOL
306 B
Bash
# This script will create a backup of the adventurelog_media volume and store it in the current directory as adventurelog-backup.tar.gz
|
|
|
|
docker run --rm \
|
|
-v adventurelog_adventurelog_media:/backup-volume \
|
|
-v "$(pwd)":/backup \
|
|
busybox \
|
|
tar -zcvf /backup/adventurelog-backup.tar.gz /backup-volume |