Linking Container in AWS Fargate

后端 未结 2 557
借酒劲吻你
借酒劲吻你 2021-02-01 14:45

I try to setup a little example on AWS Fargate and try to have one application container with one database container there.

The task definition starts both containers, b

2条回答
  •  深忆病人
    2021-02-01 15:24

    Containers in Fargate tasks share a network namespace, so you don't need to use links at all. You can simply communicate via localhost.

    For example, if you have container A running a web server on port 8000, container B could reach it with curl http://localhost:8000/

提交回复
热议问题