[Docker] Container communcation

For example you have two containers running

Container A: need to talk to Container B

Container B, running a node application export port 1337

 

From container A

docker compose exec -it containerA bash

You can ping container B

nc -v containerB 1337

To check whether the connection is correct

 

Inside code of container A

  this.tRPC = createTRPCProxyClient<ContainerBRouter>({
    links: [
      httpBatchLink({
        url: 'http://conatienrB:1337',
      }),
    ],
  })

 

posted @   Zhentiw  阅读(6)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2021-05-31 [AWS - DA - Guru] DynamoDB Exam Tips
2021-05-31 [DynamoDB] DynamoDB as Session State Cache
2021-05-31 [AWS DA] DynamoDB Transactions Calculation for RCU / WCU
2021-05-31 [AWS DA] DynamoDB CLI
2019-05-31 [Javascript] Customize Behavior when Accessing Properties with Proxy Handlers
2019-05-31 [Algorithm] Max Chars Problem
2019-05-31 [Functional Programming] Reader with Async ADT
点击右上角即可分享
微信分享提示