This repository has been archived on 2024-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
joomla/bin/file-sync.sh

16 lines
433 B
Bash
Raw Permalink Normal View History

#!/bin/bash
#check if root
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exit;
fi
#Grab dotenv
rsync -azhvc --del /var/lib/docker/volumes/harvst-ca_joomla/_data/ html/
# You probably should do something more like this:
# docker create --name temp-container -v <source_volume>:/source_data busybox
# docker cp temp-container:/source_data /path/to/destination_directory
# docker rm temp-container