Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Use integer instead of string in task-definition.json #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions reverse-proxy/task-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
{
"name": "nginx",
"image": "<your nginx reverse proxy image URL here>",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Open

"memory": "256",
"cpu": "256",
"memory": 256,
"cpu": 256,
"essential": true,
"portMappings": [
{
"containerPort": "80",
"containerPort": 80,
"protocol": "tcp"
}
],
Expand All @@ -19,8 +19,8 @@
{
"name": "app",
"image": "<your app image URL here>",
"memory": "256",
"cpu": "256",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Videos

"memory": 256,
"cpu": 256,
"essential": true
}
],
Expand Down