Skip to content

Commit e0ce69d

Browse files
authored
Merge pull request #40 from seek-oss/readme-docker-plugin
Update referenced version of docker plugin
2 parents f637daf + 601adfe commit e0ce69d

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ steps:
2828
- command: echo wow
2929
plugins:
3030
- seek-oss/docker-ecr-cache#v2.0.0
31-
- docker#v3.11.0
31+
- docker#v3.12.0
3232
```
3333
3434
### Caching npm packages
@@ -56,7 +56,7 @@ steps:
5656
cache-on:
5757
- package.json # avoid cache hits on stale lockfiles
5858
- package-lock.json
59-
- docker#v3.11.0:
59+
- docker#v3.12.0:
6060
volumes:
6161
- /workdir/node_modules
6262
```
@@ -86,7 +86,7 @@ steps:
8686
plugins:
8787
- seek-oss/docker-ecr-cache#v2.0.0:
8888
dockerfile: my-dockerfile
89-
- docker#v3.11.0
89+
- docker#v3.12.0
9090
```
9191

9292
Alternatively, Dockerfile can be embedded inline:
@@ -102,7 +102,7 @@ steps:
102102
COPY package.json package-lock.json /workdir
103103
RUN npm install
104104
105-
- docker#v3.11.0
105+
- docker#v3.12.0
106106
```
107107

108108
### Building on the resulting image
@@ -154,7 +154,7 @@ steps:
154154
plugins:
155155
- seek-oss/docker-ecr-cache#v2.0.0:
156156
target: build-deps
157-
- docker#v3.11.0
157+
- docker#v3.12.0
158158
```
159159

160160
### Specifying build context
@@ -170,7 +170,7 @@ steps:
170170
- seek-oss/docker-ecr-cache#v2.0.0:
171171
dockerfile: dockerfiles/test/Dockerfile
172172
context: '.'
173-
- docker#v3.11.0
173+
- docker#v3.12.0
174174
```
175175

176176
### Specifying build args
@@ -200,7 +200,7 @@ steps:
200200
build-args:
201201
- ARG_1
202202
- ARG_2=such
203-
- docker#v3.11.0
203+
- docker#v3.12.0
204204
```
205205

206206
Additional `docker build` arguments be passed via the `additional-build-args` setting:
@@ -213,7 +213,7 @@ steps:
213213
plugins:
214214
- seek-oss/docker-ecr-cache#v2.0.0:
215215
additional-build-args: '--ssh= default=\$SSH_AUTH_SOCK'
216-
- docker#v3.11.0
216+
- docker#v3.12.0
217217
```
218218

219219
### Specifying secrets
@@ -242,7 +242,7 @@ steps:
242242
- seek-oss/docker-ecr-cache#v2.0.0:
243243
secrets:
244244
- SECRET
245-
- docker#v3.11.0
245+
- docker#v3.12.0
246246
```
247247

248248
You can also specify the full `--secret` flag value if you need more control:
@@ -258,7 +258,7 @@ steps:
258258
- seek-oss/docker-ecr-cache#v2.0.0:
259259
secrets:
260260
- id=npmrc,src=.npmrc
261-
- docker#v3.11.0
261+
- docker#v3.12.0
262262
```
263263

264264
You must have a recent version of Docker with BuildKit support to use secrets.
@@ -275,7 +275,7 @@ steps:
275275
plugins:
276276
- seek-oss/docker-ecr-cache#v2.0.0:
277277
max-age-days: 7
278-
- docker#v3.11.0
278+
- docker#v3.12.0
279279
```
280280

281281
### Changing the name of exported variable
@@ -308,7 +308,7 @@ steps:
308308
ecr-tags:
309309
Key: Value
310310
Key2: Value2
311-
- docker#v3.11.0
311+
- docker#v3.12.0
312312
```
313313

314314
#### Specifying a region
@@ -321,7 +321,7 @@ steps:
321321
plugins:
322322
- seek-oss/docker-ecr-cache#v2.0.0:
323323
region: ap-southeast-2
324-
- docker#v3.11.0
324+
- docker#v3.12.0
325325
```
326326

327327
#### Required permissions

0 commit comments

Comments
 (0)