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
(@GermanBluefox) Fixed the adapter hanging on the first start: creating a container went through dockerode.run(), which waits for the container to exit and therefore never returned for a long-running container
(@GermanBluefox) Split containerRun() (starts detached) from the new containerRunAndWait() (runs a short-lived container and returns its output). Reading volume directories and files uses the latter and no longer detaches, which also fixes it on the CLI driver
(@GermanBluefox) Documented iobEnabled correctly: it is a required opt-in, a service is only managed if the label is set to true. Services without it are now logged on debug level instead of being skipped silently
(@GermanBluefox) Fixed iobStopOnUnload: the plugin did not implement destroy(), so containers were never stopped when the instance unloaded
(@GermanBluefox) Containers are now stopped in parallel and without the surrounding container listings, to fit into the shutdown timeout of the host
(@GermanBluefox) Applied network_mode from the compose file, including container:<name> and service:<name>
(@GermanBluefox) Fixed resolution of networks: entries declared in the top-level networks block, the true shorthand and option-less entries of the mapping form were dropped silently
(@GermanBluefox) Networks beyond the first one are now connected to the container, external networks are used verbatim