- Replace all AdventureLog references with Voyage across ~102 files (7 case variants: AdventureLog, adventurelog, Adventurelog, ADVENTURELOG, AdventUrelog, AdventureLOG, adventure-log, adventure_log) - Rename brand, static, and documentation assets to use voyage naming - Rename install_adventurelog.sh → install_voyage.sh - Update README.md and voyage_overview.md to credit AdventureLog as the upstream project and Sean Morley as its original creator
7 lines
276 B
Bash
7 lines
276 B
Bash
# This script will create a backup of the voyage_media volume and store it in the current directory as voyage-backup.tar.gz
|
|
|
|
docker run --rm \
|
|
-v voyage_voyage_media:/backup-volume \
|
|
-v "$(pwd)":/backup \
|
|
busybox \
|
|
tar -zcvf /backup/voyage-backup.tar.gz /backup-volume |