Nicolas De loof

Results 980 comments of Nicolas De loof

> It also removes the capabilities from the gpu spec and indicates that the gpu capability is implied. true, still other capabilities could be required to select the adequate device....

`--format json` produces a newline delimited JSON stream, just like `docker ps --format json` does. This is intentional. Most JSON parser (typically, `jq` command) will manage this format without pain....

AFAICT your last solution is close to a solution, you could rely on `sync+exec` watch action: ```yaml services: app: build: context: ./ dockerfile: ./backend/Dockerfile volumes: - ./backend/vendor:/app/vendor develop: watch: -...

A bind mount, _by nature_, replaces the container's filesystem on target path with the one from bind source. New files written by container will be actually created on host directly....

> having some way of mounting a folder where container files takes precedence over host files and overwrites them on container up would be an okay workaround for now, but...

This is caused by https://github.com/moby/moby/blob/5ccaf18e8cf639afaf7eca0d1d7480236327794f/registry/config.go#L169 as commented in the code, this legacy configuration is a blocker to anyone who want to run a local (secured) registry. I wonder it would...

While I understand the intent, I don't like we get the config content added into the service hash. This also only makes sense as the config content is inlined. I...

time _container_ was created, so we can check it needs to be recreated if current config doesn't match

Some poins: 1. At some point we will have to do the same for secrets (same constraints) and networks/volumes (which can get labeled with a has). Solution we adopt here...