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
@@ -739,10 +744,26 @@ export function printBindings(
739
744
);
740
745
}
741
746
747
+
if(containers.length>0){
748
+
letcontainersTitle="The following containers are available:";
749
+
if(context.name&&getFlag("MULTIWORKER")){
750
+
containersTitle=`The following containers are available from ${chalk.blue(context.name)}:`;
751
+
}
752
+
753
+
logger.log(
754
+
`${containersTitle}\n${containers
755
+
.map((c)=>{
756
+
return`- ${c.name} (${c.image})`;
757
+
})
758
+
.join("\n")}`
759
+
);
760
+
logger.log();
761
+
}
762
+
742
763
if(hasConnectionStatus){
743
764
logger.once.info(
744
765
dim(
745
-
`\nService bindings, Durable Object bindings, and Tail consumers connect to other wrangler or vite dev processes running locally, with their connection status indicated by ${chalk.green("[connected]")} or ${chalk.red("[not connected]")}. For more details, refer to https://developers.cloudflare.com/workers/runtime-apis/bindings/service-bindings/#local-development\n`
766
+
`\nService bindings, Durable Object bindings, and Tail consumers connect to other Wrangler or Vite dev processes running locally, with their connection status indicated by ${chalk.green("[connected]")} or ${chalk.red("[not connected]")}. For more details, refer to https://developers.cloudflare.com/workers/runtime-apis/bindings/service-bindings/#local-development\n`
0 commit comments