mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-22 07:01:56 +03:00
19 lines
318 B
Smarty
19 lines
318 B
Smarty
[
|
|
{
|
|
"essential": true,
|
|
"memory": 256,
|
|
"name": "myapp",
|
|
"cpu": 256,
|
|
"image": "${REPOSITORY_URL}:${APP_VERSION}",
|
|
"workingDirectory": "/app",
|
|
"command": ["npm", "start"],
|
|
"portMappings": [
|
|
{
|
|
"containerPort": 3000,
|
|
"hostPort": 3000
|
|
}
|
|
]
|
|
}
|
|
]
|
|
|