Hi again all, @uherbst > ,
Think i have found my solution from another post:
From the command line i can create a sh script to perform the backup:
#!/bin/bash
sudo tee /mnt/solace/jail/cliscripts/script-backup.cli <<-EOF
enable
backup
exit
exit
EOF
docker exec -it solace /usr/sw/loads/currentload/bin/cli -A -s script-backup.cli
aws s3 cp /mnt/solace/jail/configs/backup s3:///backup
Question for the solace professionals… any concerns / downsides to running this bash script?
Thanks