Concourse extension doesn't know about tag_file for docker-image resource
See original GitHub issueHello,
consider the following pipeline:
resources:
- name: banana-img.git
type: docker-image
source:
repository: repo/banana-scratch-build
- name: repo.git
type: git
source:
uri: https://example.com/repo.git
jobs:
- name: work-img
plan:
- get: repo.git
- put: banana-img.git
params:
build: repo.git/img
tag_prefix: hello
tag_file: repo.git/img/tag_file
the extension says:
Unknown property 'tag_file' for type 'DockerImagePutParams'

Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Concourse put task into docker-image resource. Build_args ...
Dockerfile in the context directory has the following content. I remove any specifics from it. ... Issue is these variables have empty values ......
Read more >GitLab Container Registry
Go to Packages and registries > Container Registry. Select the container image you are interested in. You can view details about each tag,...
Read more >How to Fix and Debug Docker Containers Like a Superhero
Container errors are tricky to diagnose, but some investigative magic works wonders. Read along to learn how to debug Docker containers.
Read more >Tutorial: Build and run a custom image in Azure App Service
Then, open a terminal window in thedocker-django-webapp-linux folder. (Optional) Examine the Docker file. The file in the sample named ...
Read more >Building, Tagging, & Pushing A Custom Docker Image
In this tutorial we're going to create a custom docker container with Python3 ... your choice (this demo uses Visual Studio Code with...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

For easy reference: https://github.com/concourse/docker-image-resource
At first glance, it looks like there’s multiple changes around use of tags. E.g. the ‘tag’ property is now deprecated. Should make a pass through the above linked doc, compare to our schema and make list of all the changes and sync us up again.
@kdvolder again, thanks a lot! Tested the nightly and it works fine!