fussybeaver / bollard

Docker daemon API in Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

build form local dockerfile?

v0nNemizez opened this issue · comments

i might need glasses, but i cant see anywhere in the documentation that indicate that this is pausible?
I have a git repo where i have my custom config and Dockerfiles that i pull on a regular basis when i change configs and so on.

No, this isn't implemented (yet). In theory, this would be possible using a 'client-session' remote context and the v2 buildkit builder, but... there's some further protobuf communication and serialization interfaces to add, so it's non-trivial.

That said, you can point to a remote file -

 let build_image_options = BuildImageOptions {
         remote:
            "https://raw.githubusercontent.com/somewhere/Dockerfile",
// ...

okay :) no eyesight problems then! i was worried xD Thx for the response :) you might consider this a Future Request then :)