Niel Drummond

Results 81 comments of Niel Drummond

So, you can download the contents of a container that was created from an image ... an example might be in the test https://github.com/fussybeaver/bollard/blob/master/tests/container_test.rs#L603-L612 Otherwise, there is also the buildkit...

Hi... I ran the example and it seemed to build correctly on my machine. The output was: ``` ╔═════════ Nixpacks v0.16.0 ════════╗ ║ setup │ nodejs-16_x, npm-8_x ║ ║───────────────────────────────────║ ║...

Yes, you're right I was not on the right branch. Interesting that you need the `pull` option to be enabled, I'll double check that, possibly we should default that to...

Yes this looks like you can just string utf8 encode that field, and you get a log output. I think I'll add a `Display` implementation to the `StatusResponse` type, as...

I've merged the `Display` impl for `StatusResponse` in https://github.com/fussybeaver/bollard/pull/281 I did manage to eventually reproduce the "no active session" problem above, and I think it's because the nixpacks crate doesn't...

I think you need to clear the docker cache - I always had to run `docker system prune -a -f` between runs to see any vertexlogs in buildkit.

Or... did you mean something else with progress?

I'm seeing a progress from the returned `statuses` field. https://github.com/fussybeaver/bollard/blob/8d5306da900a496ea9cfcf3a5559a5605fef8bbb/codegen/proto/resources/moby/buildkit/v1/control.proto#L125-L126 For example, while running `cargo run build ./examples/node` in the above linked Nixpacks PR, you'll get some statuses during the...

:thinking: not sure, that looks unusual... a few things you could try is setup an `env_logger` and set the environment `RUST_LOG=bollard=trace` to see whether a request was made and it's...

I had another look and tried executing the code -- it looks to me like the `tokio_scheduler` crate isn't scheduling another run when the docker client calls execute. It doesn't...