Skip to content

Commit a9d13a0

Browse files
authored
Merge pull request #286 from buildkite-plugins/Update-plugin-version
Bumping README version
2 parents a0f1ca7 + aa36ab4 commit a9d13a0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 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.12.0:
18+
- docker#v5.13.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.12.0:
28+
- docker#v5.13.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.12.0:
40+
- docker#v5.13.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.12.0:
55+
- docker#v5.13.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.12.0:
73+
- docker#v5.13.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.12.0:
87+
- docker#v5.13.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.12.0:
99+
- docker#v5.13.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.12.0:
112+
- docker#v5.13.0:
113113
image: "node:7"
114114
always-pull: true
115115
mount-checkout: false
@@ -121,7 +121,7 @@ You can enable custom logging drivers and logging options with the use of `log-d
121121
steps:
122122
- command: "npm run start"
123123
plugins:
124-
- docker#v5.12.0:
124+
- docker#v5.13.0:
125125
image: "node:7"
126126
log-driver: "awslogs"
127127
log-opt:
@@ -144,7 +144,7 @@ steps:
144144
- "p"
145145
region: us-west-2
146146
no-include-email: true
147-
- docker#v5.12.0:
147+
- docker#v5.13.0:
148148
image: "d.dkr.ecr.us-west-2.amazonaws.com/imagename"
149149
command: ["./run-integration-tests.sh"]
150150
expand-volume-vars: true
@@ -172,7 +172,7 @@ steps:
172172
plugins:
173173
- artifacts#v1.9.0:
174174
download: "node-7-image.tar.gz"
175-
- docker#v5.12.0:
175+
- docker#v5.13.0:
176176
load: "node-7-image.tar.gz"
177177
image: "node:7"
178178
```

0 commit comments

Comments
 (0)