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,27 @@ export function printBindings(
739
744
);
740
745
}
741
746
747
+
if(containers.length>0){
748
+
letcontainersTitle: string;
749
+
if(context.name&&getFlag("MULTIWORKER")){
750
+
containersTitle=`The following containers are available from ${chalk.blue(context.name)}:`;
751
+
}else{
752
+
}
753
+
754
+
logger.log(
755
+
`${containersTitle}\n${containers
756
+
.map((c)=>{
757
+
return`- ${c.name} (${c.image})`;
758
+
})
759
+
.join("\n")}`
760
+
);
761
+
logger.log();
762
+
}
763
+
742
764
if(hasConnectionStatus){
743
765
logger.once.info(
744
766
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`
767
+
`\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