Go to file
Dave Newman dac25beb7b Add makefile 2014-12-03 21:39:05 -08:00
.gitignore initial commit 2014-08-30 12:16:23 -07:00
Dockerfile Ditch s3cmd for aws cli 2014-12-03 21:32:49 -08:00
Makefile Add makefile 2014-12-03 21:39:05 -08:00
README.md Ignore running backup failures, retry final backup failures 2014-10-15 20:20:23 -07:00
s3cfg initial commit 2014-08-30 12:16:23 -07:00
watch Ditch s3cmd for aws cli 2014-12-03 21:32:49 -08:00

README.md

docker-s3-volume

Creates a Docker container that is restored and backed up to a directory on s3. You could use this to run short lived processes that work with and persist data to and from S3.

Usage:

docker run -it --rm \
  -e ACCESS_KEY=... -e SECRET_KEY=... whatupdave/s3-volume s3://<BUCKET>/<PATH>

This pulls down the contents of a directory on S3. If the container is stopped or sent a USR1 signal, it will backup the modified local contents to S3.