Nicolas De loof
Nicolas De loof
> we're using docker-compose healthchecks There's no such thing as a "compose healthcheck", compose creates container with healthcheck configuration so that docker engine manage checks and report health status. @ezrizhu...
> > confirm you're using docker compose in detached mode (compose up -d) and whenever docker compose command completed, you see this memory leak on dockerd > yes, correct. ok,...
I wonder: how will you use `myhost` host name inside container if it is set this way with more than one IP address ? According to https://serverfault.com/questions/429839/assign-multiple-ips-to-1-entry-in-hosts-file a host file...
ok, we could remove this restriction, but this also would mean one cannot override value anymore, which could be considered a regression. as "long syntax" is the canonical model I...
👎 IMHO having an env file to declare COMPOSE_ENV_FILES demonstrates a mistake organizing config It seems what you're looking for is some kind f support for `include` in dot env...
> I'm being asked "why aren't we just letting users directly invoke docker compose?". Compose comes with many flags to support customization and various usages, it is expected `docker compose...
`$$` is the right way. `docker compose config` does not remove this double dollar, as it output a valid compose file I wonder: can't you pass this secret as a...
closing as requested didn't provided feedback
The root cause is that we use a mutated `ServiceConfig` with depends_on definition removed when running `--no-deps`, which changes the service config hash. I'm investigating for a fix
For containers to communicate, those must be connected to a common network. Compose creates one by default for this purpose, if you have no reason to set network1/network2 just remote...