Simple Docker wrapper for s3cmd
docker run --rm -it \
-e ACCESS_KEY=${AWS_ACCESS_KEY} \
-e SECRET_KEY=${AWS_SECRET_KEY} \
-v $(pwd):/ws \
-w /ws \
chickenzord/s3cmd sync . s3://my-bucket
or with wrapper shell script:
export AWS_ACCESS_KEY=...
export AWS_SECRET_KEY=...
./s3cmd sync . s3://my-bucket
Content type
Image
Digest
Size
25.2 MB
Last updated
over 9 years ago
docker pull chickenzord/s3cmd