docker-volume-backup
docker-volume-backup copied to clipboard
Utility container for periodically backing up Docker volumes
this will ensure that both 'cron based' and 'manual execution' of backup.sh will use the same PATH providing consistency during testing fixes #56
This allows to transfer backups by means of `ftp`. The respective environmetal variables to configure `ftp` backups are added to the documentation. Also an exemplary `docker-compose.yml` is added.
This allows to configure the port on which the SCP host is listening by means of environmental variable `SCP_PORT`. The default value of `SCP_PORT` is the default SSH port `22`....
Recently, I noticed that the docker command is not available anymore when using it in `POST_BACKUP_COMMAND`: ``` /root/backup.sh: line 151: docker: command not found ``` @varhub, @jareware, is this in...
Hello, When I try to pull the container of this program for local testing, I get this: ``` docker pull jareware/docker-volume-backup Using default tag: latest Error response from daemon: manifest...
Hi Jarno, I reduzed the image size by more than 50% (411MB vs 857MB) by reducing layers and installing only the Docker CLI.  First step was reducing the amount...
Currently, there is a bug or, let's say, undesirable behavior when `docker.sock` is mounted. This will fix it: When `docker.sock` is mounted (e.g., if you like to trigger `docker-rotate-backups` by...
Currently S3 documentation with compose file reports: ``` AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID} # Read AWS secrets from environment (or a .env file) AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY} ``` but `.env` file is not supported with...
Currently setting `TZ="Australia/Melbourne"` has no effect on the containers timezone due to the `tzdata` package missing. Before: ``` root@grafana-backup:~# TZ="Australia/Melbourne" date Sun Feb 6 03:14:14 Australia 2022 root@grafana-backup:~# TZ="UTC" date...
Hi I like your project. I have few containers running arm64 based machines. Can you add arm64 support please?