Skip to content

Commit

Permalink
Bump to v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
72636c committed Jul 9, 2020
1 parent e0b036c commit 1272d4f
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![GitHub Release](https://img.shields.io/github/release/seek-oss/docker-ecr-cache-buildkite-plugin.svg)](https://github.com/seek-oss/docker-ecr-cache-buildkite-plugin/releases)

A [Buildkite plugin](https://buildkite.com/docs/agent/v3/plugins) to cache
Docker images in Amazon ECR.
Docker images in Amazon ECR or Google Container Registry.

This allows you to define a Dockerfile for your build-time dependencies without
worrying about the time it takes to build the image. It allows you to re-use
Expand All @@ -27,7 +27,7 @@ RUN echo 'my expensive build step'
steps:
- command: echo wow
plugins:
- seek-oss/docker-ecr-cache#v1.8.0
- seek-oss/docker-ecr-cache#v1.9.0
- docker#v3.3.0
```
Expand All @@ -52,7 +52,7 @@ RUN npm install
steps:
- command: npm test
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
cache-on:
- package-lock.json
- docker#v3.3.0:
Expand All @@ -66,7 +66,7 @@ The `cache-on` property also supports Bash globbing with `globstar`:
steps:
- command: npm test
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
cache-on:
- '**/package.json' # monorepo with multiple manifest files
- yarn.lock
Expand All @@ -83,7 +83,7 @@ It's possible to specify the Dockerfile to use by:
steps:
- command: echo wow
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
dockerfile: my-dockerfile
- docker#v3.3.0
```
Expand All @@ -102,7 +102,7 @@ stage to run commands against:
steps:
- command: cargo test
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
target: build-deps
- docker#v3.3.0
```
Expand All @@ -117,7 +117,7 @@ The `context` property can be used to specify a different path.
steps:
- command: cargo test
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
dockerfile: dockerfiles/test/Dockerfile
context: '.'
- docker#v3.3.0
Expand Down Expand Up @@ -146,7 +146,7 @@ steps:
env:
ARG_1: wow
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
build-args:
- ARG_1
- ARG_2=such
Expand All @@ -161,7 +161,7 @@ steps:
env:
ARG_1: wow
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
additional-build-args: '--ssh= default=\$SSH_AUTH_SOCK'
- docker#v3.3.0
```
Expand All @@ -174,7 +174,7 @@ By default images are kept in ECR for up to 30 days. This can be changed by spec
steps:
- command: echo wow
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
max-age-days: 7
- docker#v3.3.0
```
Expand All @@ -187,7 +187,7 @@ By default image name and computed tag are exported to the Docker buildkite plug
steps:
- command: echo wow
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
export-env-variable: BUILDKITE_PLUGIN_MY_CUSTOM_PLUGIN_CACHE_IMAGE
- my-custom-plugin#v1.0.0:
```
Expand All @@ -204,7 +204,7 @@ optionally use a custom repository name:
steps:
- command: echo wow
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
ecr-name: my-unique-repository-name
ecr-tags:
Key: Value
Expand All @@ -221,7 +221,7 @@ Example:
```yaml
- command: echo wow
plugins:
- seek-oss/docker-ecr-cache#v1.8.0:
- seek-oss/docker-ecr-cache#v1.9.0:
registry-provider: gcr
gcp-project: foo-bar-123456
```
Expand Down

0 comments on commit 1272d4f

Please sign in to comment.