Skip to content

Commit fdcb96b

Browse files
committed
Revert tag bump
1 parent 9ac3d02 commit fdcb96b

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 12 additions & 12 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.13.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.13.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.13.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.13.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.13.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.13.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.13.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.13.0:
112+
- docker#v5.12.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.13.0:
124+
- docker#v5.12.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.13.0:
147+
- docker#v5.12.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.13.0:
175+
- docker#v5.12.0:
176176
load: "node-7-image.tar.gz"
177177
image: "node:7"
178178
```
@@ -345,7 +345,7 @@ Specify a file to load a docker image from. If omitted no load will be done.
345345

346346
Whether to automatically mount the current working directory which contains your checked out codebase. Mounts onto `/workdir`, unless `workdir` is set, in which case that will be used.
347347

348-
If there's a git mirror path and `mount-checkout` is enabled, the (mirror path)[https://buildkite.com/docs/pipelines/environment-variables#BUILDKITE_REPO_MIRROR] is mounted into the docker container as an added volume. Otherwise, the git mirror path will have to be explicitly added as an extra volume to mount into the container.
348+
If there's a git mirror path and `mount-checkout` is enabled, the (mirror path)[https://buildkite.com/docs/pipelines/environment-variables#BUILDKITE_REPO_MIRROR] is mounted into the docker container as an added volume. Otherwise, the git mirror path will have to be explicitly added as an extra volume to mount into the container.
349349

350350
Default: `true`
351351

0 commit comments

Comments
 (0)