Nicolas De loof

Results 980 comments of Nicolas De loof

@hiro5id are you able to setup an equivalent network connectivity using plain `docker network create` and `docker run --network ..` commands? I need to admit it's unclear to me if...

closing as unclear and obsolete. If you encounter a comparable issue, please create a fresh new one with details on your environment

I ran a quick test: ``` $ cat compose.yaml services: toto: image: alpine command: cat /run/secrets/test secrets: - test secrets: test: environment: MY_SECRET $ docker compose version Docker Compose version...

@croth1-liveeo see https://github.com/docker/compose/pull/11974

do you have a real-world example to require `compose.${COMPOSE_CLIENT_OS}.yaml` ? Compose has been designed to enforce portability, so introducing such a feature/pattern sounds like we failed. about support for UID/GID,...

`watch` is integrated in `docker compose up` (by adding `--watch` flag) and can even be activated dynamically, which would prevent such feature to be supported. For your use-case, a common...

I had in mind we introduce development-only additional attributes in the `develop` section that would be independent from watch feature, i.e if you run `docker compose up` in development mode...

nope, that's just an idea I have in mind for long time but didn't created an issue for it. Let's use this one :P

@robinhickmann TBD. Could be a flag `--develop` and/or an environment variable `COMPOSE_DEVELOP`, or ... any suggestion is welcome

Daemon code indeed creates working directory as `root`: https://github.com/moby/moby/blob/16009830c2e2f3840ee73459918289f4bf54bd1d/container/container.go#L277 I agree doing so makes it impossible to access working directory as a non-root user, and it would make sense created...