Skip to content

Commit

Permalink
Pin a specific version of the Alpine containers.
Browse files Browse the repository at this point in the history
The latest tag was recently updated to point to the 3.8 release, but
this release was broken[1]. attempting to pull the container locally
resulted in the error:

$ docker pull alpine:latest
latest: Pulling from library/alpine
no matching manifest for linux/amd64 in the manifest list entries

Pinning this to the version we were previously using (3.7) should help
avoid this sort of issue in future.

[1]gliderlabs/docker-alpine#418
  • Loading branch information
alext authored and henrytk committed Jul 6, 2018
1 parent 023275e commit 4d7b463
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion concourse/pipelines/autodelete-cloudfoundry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
type: docker-image
source:
repository: alpine
tag: latest
tag: 3.7
inputs:
- name: paas-cf
params:
Expand Down
8 changes: 4 additions & 4 deletions concourse/pipelines/create-cloudfoundry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ jobs:
type: docker-image
source:
repository: alpine
tag: latest
tag: 3.7
platform: linux
params:
DISABLE_PIPELINE_LOCKING: ((disable_pipeline_locking))
Expand Down Expand Up @@ -1184,7 +1184,7 @@ jobs:
type: docker-image
source:
repository: alpine
tag: latest
tag: 3.7
inputs:
- name: paas-cf
outputs:
Expand Down Expand Up @@ -3090,7 +3090,7 @@ jobs:
type: docker-image
source:
repository: alpine
tag: latest
tag: 3.7
platform: linux
params:
DISABLE_PIPELINE_LOCKING: ((disable_pipeline_locking))
Expand Down Expand Up @@ -3531,7 +3531,7 @@ jobs:
type: docker-image
source:
repository: alpine
tag: latest
tag: 3.7
inputs:
- name: deployed-healthcheck
params:
Expand Down
2 changes: 1 addition & 1 deletion concourse/pipelines/deployment-kick-off.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
type: docker-image
source:
repository: alpine
tag: latest
tag: 3.7
inputs:
- name: paas-cf
- name: deployment-timer
Expand Down

0 comments on commit 4d7b463

Please sign in to comment.