mirror of
https://github.com/thegeeklab/wp-s3-action.git
synced 2024-11-21 14:50:39 +00:00
Unified documentation and readme
This commit is contained in:
parent
d0a571de4e
commit
0b75267c4f
25
README.md
25
README.md
@ -12,26 +12,31 @@ Drone plugin to synchronize a directory with an Amazon S3 Bucket. For the usage
|
|||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
|
||||||
Build the binary with the following commands:
|
Build the binary with the following command:
|
||||||
|
|
||||||
```
|
```console
|
||||||
go build
|
export GOOS=linux
|
||||||
|
export GOARCH=amd64
|
||||||
|
export CGO_ENABLED=0
|
||||||
|
export GO111MODULE=on
|
||||||
|
|
||||||
|
go build -v -a -tags netgo -o release/linux/amd64/drone-s3-sync
|
||||||
```
|
```
|
||||||
|
|
||||||
## Docker
|
## Docker
|
||||||
|
|
||||||
Build the Docker image with the following commands:
|
Build the Docker image with the following command:
|
||||||
|
|
||||||
```
|
```console
|
||||||
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -a -tags netgo -o release/linux/amd64/drone-s3-sync
|
docker build \
|
||||||
docker build --rm -t plugins/s3-sync .
|
--label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
|
||||||
|
--label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
|
||||||
|
--file docker/Dockerfile.linux.amd64 --tag plugins/s3-sync .
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Execute from the working directory:
|
```console
|
||||||
|
|
||||||
```sh
|
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
-e PLUGIN_SOURCE=<source> \
|
-e PLUGIN_SOURCE=<source> \
|
||||||
-e PLUGIN_TARGET=<target> \
|
-e PLUGIN_TARGET=<target> \
|
||||||
|
Loading…
Reference in New Issue
Block a user