Simple duplicity image including s3 support
1.2K
You can use duplicity in the normal way, see official documentation here.
docker run \
-v ~/temp:/tmp/temp \
-e PASSPHRASE='a duplicity key' \
-e AWS_SECRET_ACCESS_KEY='EXAMPLESECRETACCESSKEY' \
-e AWS_ACCESS_KEY_ID='ACCESSKEYEXAMPLE' \
alexgleith/duplicity \
duplicity --s3-use-new-style /tmp/temp/temp.txt s3+http://example-s3-repo
docker run \
-v ~/temp:/tmp/temp \
-e PASSPHRASE='a duplicity key' \
-e AWS_SECRET_ACCESS_KEY='EXAMPLESECRETACCESSKEY' \
-e AWS_ACCESS_KEY_ID='ACCESSKEYEXAMPLE' \
alexgleith/duplicity \
duplicity --s3-use-new-style s3+http://example-s3-repo /tmp/temp/restored.txt
Content type
Image
Digest
Size
119.1 MB
Last updated
over 8 years ago
docker pull alexgleith/duplicity