We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a459fa commit 7abb0a9Copy full SHA for 7abb0a9
README.md
@@ -42,6 +42,7 @@ docker: Error response from daemon: Container command
42
43
Execute from the working directory:
44
45
+* For upload
46
```
47
docker run --rm \
48
-e PLUGIN_SOURCE=<source> \
@@ -53,3 +54,17 @@ docker run --rm \
53
54
-w $(pwd) \
55
plugins/s3 --dry-run
56
57
+
58
+* For download
59
+```
60
+docker run --rm \
61
+ -e PLUGIN_SOURCE=<source directory to be downloaded from bucket> \
62
+ -e PLUGIN_BUCKET=<bucket> \
63
+ -e AWS_ACCESS_KEY_ID=<token> \
64
+ -e AWS_SECRET_ACCESS_KEY=<secret> \
65
+ -e PLUGIN_REGION=<region where the bucket is deployed> \
66
+ -e PLUGIN_DOWNLOAD="true" \
67
+ -v $(pwd):$(pwd) \
68
+ -w $(pwd) \
69
+ plugins/s3 --dry-run
70
0 commit comments