Nicolas De loof

Results 981 comments of Nicolas De loof

I honestly don't understand what you described here :'( I suggest you don't try using dedicated network, just rely on Compose to set a default network so all services can...

> requests from myapp1 to myapp2 failed. They went through IP address-based communication and resulted in certificate validation errors due to the use of HTTPS communication between compose services relies...

Not sure I understand how compose is involve here. Compose creates containers with restartPolicy as declared in compose file, but this is engine restarting them. Compose is stateless and client...

docker-compose access the engine through the HTTP API. Maybe it does not manage correctly the many concurrent connexions, but this should not have impacts on file descriptors used by engine.

If you run thousands replicas, compose will open same number of `ContainerAttach` long-running API calls, which may indeed break some limits. Still, I hardly understand how Compose would be responsible...

There's no `Detach` API. `ContainerAttach` is a long running HTTP-hijack call which updates protocol so stdin/stdout streams can be attached from client to container. As container stops, streams will end...

unfortunately there's no way with Docker engine API to prepare filesystem before container is started with custom content. I created a PR so we offer an explicit error message for...

the devcontainer feature you're listing here is about command hooks to run during container lifecycle, not about dependency management. IIUC your needs, you have to wait for `postgres` to be...

What you are looking for is [`start_interval`](https://github.com/compose-spec/compose-spec/blob/main/05-services.md#healthcheck) which let you define a higher rate to wait for service to become healthy after it just has been created, then adopt a...

this indeed is a docs issue. `.` is always resolved relative to the project directory