Yes, it’s possible to stop Anthias before you do a backup.
After SSH-ing into your device, you could run the following commands:
cd ~/screenly
docker compose down
After that, you can start backing up.
When you’re done, you can run the following:
cd ~/screenly
./bin/upgrade_containers.sh
Please take note that running upgrade_containers.sh will try to pull the latest changes from Docker Hub.
If you want to just start the containers again, you can modify upgrade_containers.sh and temporarily comment the following lines before you run the script:
The backup is going to USB Stick connected to the raspberry pi: must be NTFS formatted for files > 4GB !
lsusb … information about the USB devices connected to your system, including the bus number, device number, vendor ID, product ID, device class, subclass, and protocol
lsblk … lists information about all available or the specified block devices
sudo fdisk -l /dev/sda … list partition details of USB drive
mount USB Stick:
sudo mkdir /media/usb
sudo mount /dev/sda1 /media/usb (see partition details above)