David Negstad

Results 100 comments of David Negstad

In VSCode we’d be getting the PID from the IDE protocol; are the logs showing a valid PID before the process is terminated?

We get the exit code from the IDE protocol as well, so we need to make sure the correct values are getting sent; there should be logs for each IDE...

@radical I'm trying to update the image registry for Redis Commander (the official image is on ghcr.io now instead of docker.io), but it seems the test is timing out. I'm...

Docker has been [producing OCI images by default](https://www.docker.com/blog/highlights-buildkit-v0-11-release/) for a couple years now, so outside of images that haven’t been updated in years or specific edge cases where users have...

I’ve never found a formal spec, but the implementations for image format are consistent and stable between Docker and Podman, so we were able to put together a regex that...

Fortunately, because Docker Hub doesn’t allow periods in registry names, you can get away with assuming that if your image name starts with a valid domain (such as mcr.microsoft.com), that...

I'd argue for a breaking change of marking `WithImageTag` and `WithImageRegistry` as deprecated and having `WithImage` always replace the existing `ContainerImageAnnotation` (only preserving an existing SHA256 if one is set)....

I’m suggesting an exception if the user specifies something like WithImage(“nginx:1.27”, “latest”) where they’ve provided conflicting tags. The current APIs are inconsistent with how they treat image references, which is...

I was thinking about it a bit more and chatted some with @mitchdenny; if `WithImage` is updated to properly parse and set all the properties for a ContainerImageAnnotation (including parsing...

I'm suspicious the main issue is that we aren't considering the purpose of the build in VS when we trigger publish; we're just naively doing a publish for every build...