Skip to content

Commit

Permalink
ci(pulumi): set ipfs 8011 port mapping directly instead of using list…
Browse files Browse the repository at this point in the history
…ener

Otherwise will see an error `ClientException: TCP container port '4011' is used multiple times in
task when networkMode=awsvpc`
  • Loading branch information
shavinac committed May 25, 2022
1 parent b25dbaf commit 3754679
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion infra/ceramic-mainnet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,10 @@ const service = new awsx.ecs.FargateService("dpopp-ceramic", {
containerPort: 5001,
hostPort: 5001,
},
ipfsHealthcheckListener,
{
containerPort: 8011,
hostPort: 8011,
},
ceramicListener,
],
links: [],
Expand Down
5 changes: 4 additions & 1 deletion infra/ceramic-testnet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,10 @@ const service = new awsx.ecs.FargateService("dpopp-ceramic", {
containerPort: 5001,
hostPort: 5001,
},
ipfsHealthcheckListener,
{
containerPort: 8011,
hostPort: 8011,
},
ceramicListener,
],
links: [],
Expand Down

0 comments on commit 3754679

Please sign in to comment.