-
Notifications
You must be signed in to change notification settings - Fork 2
/
ecs.config
36 lines (36 loc) · 919 Bytes
/
ecs.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"containerDefinitions": [
{
"command": [
"bash",
"-c",
"python coin_match/manage.py makemigrations && python coin_match/manage.py migrate && python coin_match/manage.py runserver 0.0.0.0:8000"
],
"essential": true,
"mountPoints": [
{
"containerPath": "/src",
"sourceVolume": "_"
}
],
"name": "web",
"portMappings": [
{
"containerPort": 8000,
"hostPort": 8000
}
],
"image": "coinmatchwebapi_web:latest",
"memory": 4096
}
],
"family": "",
"volumes": [
{
"host": {
"sourcePath": "."
},
"name": "_"
}
]
}