Cory Snider

Results 223 comments of Cory Snider

> I'm leaning towards keeping this more separate from the registry; "search" is a bit of an odd one, because search is _not part_ of the OCI distribution specification. The...

Related: https://github.com/docker-library/golang/issues/231 Supposedly stack protection can be enabled by building with `CGO_LDFLAGS=-fstack-protector`. Contributions welcome.

The `failed to read /proc/sys/net/ipv6/conf/docker0/accept_ra` log looks to be unrelated. It just happens to be the last thing logged at INFO level or above before the daemon panics. https://github.com/moby/moby/blob/4c02882f8a2f18908a8f2a130626500b411d90ae/libnetwork/drivers/bridge/setup_device.go#L44-L58 I...

While there is no code which verifies `len(ipamV4Config) == len(ipamV4Info)` on unmarshal, there is _some_ guarantee that the slices are the same length...sometimes. https://github.com/moby/moby/blob/f825537119dd8b6dd099d351d8be194fc0eeb1cf/libnetwork/network.go#L1624 When a new network object is...

I didn't see anything interesting in the engine diff. The only notable change in the libnetwork which stood out to me is https://github.com/moby/libnetwork/commit/6f36306d8b17ee7e960cf42eed499b768ef3d9a9 as it changes the order of operations...

Thanks @rtaylor-rossvideo! The log you have shared is very helpful, however I didn't notice until just now that the error I was hoping to find won't be logged to the...

If it's not already logged by default, you could try passing the `--verbose` flag to `docker-compose`. Are you using docker-compose v1 (Python, deprecated) or v2 (Go, built into the `docker`...

Yes, that's as good as we can get without modifying docker-compose or dockerd. There's no sign of the "failed to remove network" type error I was hoping for, which disproves...

I reproduced the panic locally on v23.0.3 in a DinD instance on my second attempt. ```console ~ # for n in 1 2; do sh -c "docker compose down; pkill...

I cannot reproduce the issue. ```console $ docker run --rm -it --privileged docker:23.0.1-dind sh / # unset DOCKER_HOST / # dockerd &>/dev/null & / # docker volume create foo foo...