You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 15, 2025. It is now read-only.
Ran into a problem where ce-dev start would spin up the first container successfully (a db one), then spit out WARNING: Ignoring custom format, because both --format and --quiet are set. The second (web) container wasn't started.
Looking at docker/cli#3666, docker ps behaviour has changed, so that when --quiet is passed as well as--format, quiet takes precedence and format is ignored.
Ran into a problem where
ce-dev startwould spin up the first container successfully (a db one), then spit outWARNING: Ignoring custom format, because both --format and --quiet are set. The second (web) container wasn't started.Looking at docker/cli#3666,
docker psbehaviour has changed, so that when--quietis passed as well as--format,quiettakes precedence andformatis ignored.Looks like there are two occurrences of this in
ce-dev.As a quick, local, fix I removed the
--quietfrom/opt/ce-dev/lib/base-cmd-abstract.js, which did the trick.