Skip to content

Commit db8815a

Browse files
authored
Merge pull request #281 from buildkite-plugins/new-release-version
Update plugin version
2 parents a559dfb + ab475be commit db8815a

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ steps:
1515
- command: "go build -o dist/my-app ."
1616
artifact_paths: "./dist/my-app"
1717
plugins:
18-
- docker#v5.11.0:
18+
- docker#v5.12.0:
1919
image: "golang:1.11"
2020
```
2121
@@ -25,7 +25,7 @@ Windows images are also supported:
2525
steps:
2626
- command: "dotnet publish -c Release -o published"
2727
plugins:
28-
- docker#v5.11.0:
28+
- docker#v5.12.0:
2929
image: "microsoft/dotnet:latest"
3030
always-pull: true
3131
```
@@ -37,7 +37,7 @@ If you want to control how your command is passed to the docker container, you c
3737
```yml
3838
steps:
3939
- plugins:
40-
- docker#v5.11.0:
40+
- docker#v5.12.0:
4141
image: "mesosphere/aws-cli"
4242
always-pull: true
4343
command: ["s3", "sync", "s3://my-bucket/dist/", "/app/dist"]
@@ -52,7 +52,7 @@ Note: If you are utilizing Buildkite's [Elastic CI Stack S3 Secrets plugin](http
5252
steps:
5353
- command: "yarn install; yarn run test"
5454
plugins:
55-
- docker#v5.11.0:
55+
- docker#v5.12.0:
5656
image: "node:7"
5757
always-pull: true
5858
environment:
@@ -70,7 +70,7 @@ steps:
7070
env:
7171
MY_SPECIAL_BUT_PUBLIC_VALUE: kittens
7272
plugins:
73-
- docker#v5.11.0:
73+
- docker#v5.12.0:
7474
image: "node:7"
7575
always-pull: true
7676
propagate-environment: true
@@ -84,7 +84,7 @@ steps:
8484
env:
8585
MY_SPECIAL_BUT_PUBLIC_VALUE: kittens
8686
plugins:
87-
- docker#v5.11.0:
87+
- docker#v5.12.0:
8888
image: "node:7"
8989
always-pull: true
9090
propagate-aws-auth-tokens: true
@@ -96,7 +96,7 @@ You can pass in additional volumes to be mounted. This is useful for running Doc
9696
steps:
9797
- command: "docker build . -t image:tag; docker push image:tag"
9898
plugins:
99-
- docker#v5.11.0:
99+
- docker#v5.12.0:
100100
image: "docker:latest"
101101
always-pull: true
102102
volumes:
@@ -109,7 +109,7 @@ You can disable the default behaviour of mounting in the checkout to `workdir`:
109109
steps:
110110
- command: "npm start"
111111
plugins:
112-
- docker#v5.11.0:
112+
- docker#v5.12.0:
113113
image: "node:7"
114114
always-pull: true
115115
mount-checkout: false
@@ -128,7 +128,7 @@ steps:
128128
- "p"
129129
region: us-west-2
130130
no-include-email: true
131-
- docker#v5.11.0:
131+
- docker#v5.12.0:
132132
image: "d.dkr.ecr.us-west-2.amazonaws.com/imagename"
133133
command: ["./run-integration-tests.sh"]
134134
expand-volume-vars: true
@@ -156,7 +156,7 @@ steps:
156156
plugins:
157157
- artifacts#v1.9.0:
158158
download: "node-7-image.tar.gz"
159-
- docker#v5.11.0:
159+
- docker#v5.12.0:
160160
load: "node-7-image.tar.gz"
161161
image: "node:7"
162162
```

0 commit comments

Comments
 (0)