Skip to content

Commit

Permalink
Bump to v1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
toolmantim committed Jan 15, 2018
1 parent 074a796 commit cdc32e7
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following pipeline will run `test.sh` inside a `app` service container using
steps:
- command: test.sh
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
run: app
```
Expand All @@ -28,7 +28,7 @@ through if you need:
steps:
- command: test.sh
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
run: app
config: docker-compose.tests.yml
env:
Expand All @@ -41,7 +41,7 @@ or multiple config files:
steps:
- command: test.sh
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
run: app
config:
- docker-compose.yml
Expand All @@ -59,7 +59,7 @@ steps:
- command: generate-dist.sh
artifact_paths: "dist/*"
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
run: app
```
Expand All @@ -85,7 +85,7 @@ this plugin offers a `environment` block of it's own:
steps:
- command: generate-dist.sh
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
run: app
env:
- BUILDKITE_BUILD_NUMBER
Expand All @@ -103,7 +103,7 @@ To speed up run parallel steps you can add a pre-building step to your pipeline,
steps:
- name: ":docker: Build"
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
build: app
- wait
Expand All @@ -112,7 +112,7 @@ steps:
command: test.sh
parallelism: 25
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
run: app
```

Expand All @@ -124,7 +124,7 @@ steps:
agents:
queue: docker-builder
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
build: app
image-repository: index.docker.io/org/repo
Expand All @@ -136,7 +136,7 @@ steps:
agents:
queue: docker-runner
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
run: app
```

Expand All @@ -150,7 +150,7 @@ steps:
agents:
queue: docker-builder
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
build:
- app
- tests
Expand All @@ -162,7 +162,7 @@ steps:
command: test.sh
parallelism: 25
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
run: tests
```

Expand All @@ -174,7 +174,7 @@ Prebuilt images are automatically pushed with a `build` step, but often you want
steps:
- name: ":docker: Push to final repository"
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
push:
- app:index.docker.io/org/repo/myapp
- app:index.docker.io/org/repo/myapp:latest
Expand All @@ -187,13 +187,13 @@ A newly spawned agent won't contain any of the docker caches for the first run w
steps:
- name: ":docker Build an image"
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
build: app
image-repository: index.docker.io/org/repo
cache-from: app:index.docker.io/org/repo/myapp:latest
- name: ":docker: Push to final repository"
plugins:
docker-compose#v1.8.0:
docker-compose#v1.8.1:
push:
- app:index.docker.io/org/repo/myapp
- app:index.docker.io/org/repo/myapp:latest
Expand Down

0 comments on commit cdc32e7

Please sign in to comment.