Chanseok Oh

Results 388 comments of Chanseok Oh

I'm afraid that it'll not happen. Not because we just see it's unconventional, but also because it's obvious that it will just make your life (and potential others') difficult for...

@rishta ah, interesting. I thought back then that every registry must always use the endpoint `/v2/`, but I confirmed that it's possible to run [`registry`](https://hub.docker.com/_/registry) with a prefix.

Not sure why I didn't reopen this issue. Will have this open as a feature request.

See https://github.com/GoogleContainerTools/jib/issues/3700#issuecomment-1168790728

I imagine that if we were to support this, we'd go with an extension. (Part of the reason is explained in https://github.com/GoogleContainerTools/jib-extensions/pull/31#issuecomment-655553254). > We are using Jib with Spring Boot...

> ``` > # Retrieve the files present in the /app/libs directory before subsequently joining them with a ':' > LIBS=/app/libs/* > exec java ${JAVA_OPTS} -cp /app/resources:/app/classes:${LIBS/ /:} ${MAIN_CLASS} >...

The existing Spring Boot extension doesn't do anything about this issue. It is not unreasonable to special-case Spring Boot with an extension, so you can move this issue to jib-extensions...

@loosebazooka based on your comments (https://github.com/GoogleContainerTools/jib/issues/2732#issuecomment-682183567 and https://github.com/GoogleContainerTools/jib/issues/2732#issuecomment-682194793), how do you think this particular issue can be resolved best? And in general?

I see, so basically we do intend to move all the Gradle parameters to support lazy evaluation (as done in #2727 and #2905).

Hi @alpar-t, Sorry for the delay. It makes sense to support a compressed Docker tar image. I just wasn't sure if we should decompress it in `TarExtractor` or `LocalBaseImageSteps.cacheDockerImageTar()`. Maybe...