Skip to content

Commit

Permalink
Fixed docker image resource names
Browse files Browse the repository at this point in the history
  • Loading branch information
fjudith committed Nov 11, 2019
1 parent 6d9f4b0 commit ebea3a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions concourse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resources:
uri: https://github.com/fjudith/docker-draw.io.git
branch: master

- name: draw.io
- name: draw.io:latest
type: docker-image
source:
email: ((docker-hub-email))
Expand All @@ -15,7 +15,7 @@ resources:
repository: ((docker-hub-repo))/draw.io
tag: latest

- name: draw.io-alpine
- name: draw.io:alpine
type: docker-image
source:
email: ((docker-hub-email))
Expand All @@ -30,14 +30,14 @@ jobs:
plan:
- get: docker-draw.io
trigger: true
- put: draw.io
- put: draw.io:latest
params:
build: docker-draw.io/debian
- name: publish-alpine
public: true
plan:
- get: docker-draw.io
trigger: true
- put: draw.io-alpine
- put: draw.io:alpine
params:
build: docker-draw.io/alpine

0 comments on commit ebea3a0

Please sign in to comment.