question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Concourse extension doesn't know about tag_file for docker-image resource

See original GitHub issue

Hello,

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'

tag

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
kdvoldercommented, Feb 5, 2019

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.

0reactions
marco-mcommented, Feb 6, 2019

@kdvolder again, thanks a lot! Tested the nightly and it works fine!

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found