Skip to content

Commit 407be7e

Browse files
authored
Merge pull request #243 from buildkite-plugins/update-v5.6
Update docker version
2 parents d4a2f39 + bcc896e commit 407be7e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ steps:
1313
- command: "go build -o dist/my-app ."
1414
artifact_paths: "./dist/my-app"
1515
plugins:
16-
- docker#v5.5.1:
16+
- docker#v5.6.0:
1717
image: "golang:1.11"
1818
```
1919
@@ -23,7 +23,7 @@ Windows images are also supported:
2323
steps:
2424
- command: "dotnet publish -c Release -o published"
2525
plugins:
26-
- docker#v5.5.1:
26+
- docker#v5.6.0:
2727
image: "microsoft/dotnet:latest"
2828
always-pull: true
2929
```
@@ -35,7 +35,7 @@ If you want to control how your command is passed to the docker container, you c
3535
```yml
3636
steps:
3737
- plugins:
38-
- docker#v5.5.1:
38+
- docker#v5.6.0:
3939
image: "mesosphere/aws-cli"
4040
always-pull: true
4141
command: ["s3", "sync", "s3://my-bucket/dist/", "/app/dist"]
@@ -50,7 +50,7 @@ Note: If you are utilizing Buildkite's [Elastic CI Stack S3 Secrets plugin](http
5050
steps:
5151
- command: "yarn install; yarn run test"
5252
plugins:
53-
- docker#v5.5.1:
53+
- docker#v5.6.0:
5454
image: "node:7"
5555
always-pull: true
5656
environment:
@@ -68,7 +68,7 @@ steps:
6868
env:
6969
MY_SPECIAL_BUT_PUBLIC_VALUE: kittens
7070
plugins:
71-
- docker#v5.5.1:
71+
- docker#v5.6.0:
7272
image: "node:7"
7373
always-pull: true
7474
propagate-environment: true
@@ -82,7 +82,7 @@ steps:
8282
env:
8383
MY_SPECIAL_BUT_PUBLIC_VALUE: kittens
8484
plugins:
85-
- docker#v5.5.1:
85+
- docker#v5.6.0:
8686
image: "node:7"
8787
always-pull: true
8888
propagate-aws-auth-tokens: true
@@ -94,7 +94,7 @@ You can pass in additional volumes to be mounted. This is useful for running Doc
9494
steps:
9595
- command: "docker build . -t image:tag; docker push image:tag"
9696
plugins:
97-
- docker#v5.5.1:
97+
- docker#v5.6.0:
9898
image: "docker:latest"
9999
always-pull: true
100100
volumes:
@@ -107,7 +107,7 @@ You can disable the default behaviour of mounting in the checkout to `workdir`:
107107
steps:
108108
- command: "npm start"
109109
plugins:
110-
- docker#v5.5.1:
110+
- docker#v5.6.0:
111111
image: "node:7"
112112
always-pull: true
113113
mount-checkout: false

0 commit comments

Comments
 (0)