Archived
9 lines
236 B
Bash
9 lines
236 B
Bash
#!/usr/bin/env bash
|
|
|
|
SERVICES_UP_SCRIPT="/home/raspi/raspi/services-up.sh"
|
|
|
|
$SERVICES_UP_SCRIPT --profile all down
|
|
|
|
sudo rsync -aHAXv --info=progress2 docker-data/ root@docker:/mnt/raspi-backup/
|
|
|
|
$SERVICES_UP_SCRIPT --profile all up -d |