Skip to content

Commit

Permalink
update version, tag, and fix reboot issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kammerdiener committed Aug 22, 2022
1 parent 11b6dde commit 1dc7278
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions infra/ceramic-testnet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ const service = new awsx.ecs.FargateService("dpopp-ceramic", {
taskDefinitionArgs: {
containers: {
ceramic: {
image: "ceramicnetwork/js-ceramic:latest",
image: "ceramicnetwork/js-ceramic@sha256:dbac573700f3370524a216e7dbc9862c4f96c85b1d03a9bdec801fdccddb017e",
memory: 8192,
cpu: 4096,
portMappings: [httpsListener],
Expand All @@ -346,6 +346,7 @@ const service = new awsx.ecs.FargateService("dpopp-ceramic", {
{ name: "AWS_ACCESS_KEY_ID", value: usrS3Key },
{ name: "AWS_SECRET_ACCESS_KEY", value: usrS3Secret },
{ name: "NODE_OPTIONS", value: "--max-old-space-size=7168" },
{ name: "CERAMIC_STREAM_CACHE_LIMIT", value: "2000" },
],
},
},
Expand All @@ -360,7 +361,7 @@ const serviceIPFS = new awsx.ecs.FargateService("dpopp-ipfs", {
taskDefinitionArgs: {
containers: {
ipfs: {
image: "ceramicnetwork/go-ipfs-daemon:latest",
image: "ceramicnetwork/go-ipfs-daemon@sha256:b77db182710abe065d9f974966488f6dd8ced93b0db50118f8a2d9c483a3a4da",
memory: 8192,
cpu: 4096,
portMappings: [ceramicListener, ipfsListener, ipfsHealthcheckListener, ifpsWSListener],
Expand Down

0 comments on commit 1dc7278

Please sign in to comment.