Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Docker image tags referenced in Java source files (helpful when using Localstack) #8075

Closed
1 task done
kesslerj opened this issue Sep 21, 2023 · 2 comments
Closed
1 task done
Labels
T: feature-request Requests for new features

Comments

@kesslerj
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

Feature description

We use Localstack when testing our Spring Boot applications to have AWS resources available in Docker containers. We are used to using Dependabot everywhere in the project to update dependencies. Now we've stumbled across that it doesn't seem to be supported to update Docker image tags referenced in Java code.

Here is a simple example snippet: If it helps, I'm also happy to provide an example repository.

  private static final LocalStackContainer localStackContainer;

  static {
    localStackContainer = new LocalStackContainer(DockerImageName.parse("localstack/localstack:2.2.0"))
        .withServices(LocalStackContainer.Service.KMS)
        .withEnv("AWS_DEFAULT_REGION", "eu-central-1");
    localStackContainer.start();
  }

I found some other feature requests/issues that also suggest Docker image tag support in other places. The latest ticket seems to me to be this one, which also links the other tickets: #7189

@kesslerj kesslerj added the T: feature-request Requests for new features label Sep 21, 2023
@yeikel
Copy link
Contributor

yeikel commented Oct 15, 2023

This issue seems to be a duplicate of #6893

@deivid-rodriguez
Copy link
Contributor

Thanks @yeikel, closing as a duplicate!

@kesslerj Please what that other issue for updates.

@deivid-rodriguez deivid-rodriguez closed this as not planned Won't fix, can't repro, duplicate, stale Oct 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T: feature-request Requests for new features
Projects
None yet
Development

No branches or pull requests

3 participants