-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerrun.aws.json
123 lines (123 loc) · 2.51 KB
/
Dockerrun.aws.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"AWSEBDockerrunVersion": 2,
"volumes": [
{
"name": "app-source",
"host": {
"sourcePath": "/var/app/current/app"
}
},
{
"name": "web-config",
"host": {
"sourcePath": "/var/app/current/docker/nginx/default.conf"
}
}
],
"containerDefinitions": [
{
"name": "wordpress",
"image": "wordpress:php8.1-fpm-alpine",
"essential": true,
"environment": [
{
"name": "WORDPRESS_DB_HOST",
"value": "rds-endpoint"
},
{
"name": "WORDPRESS_DB_NAME",
"value": "wordpress"
},
{
"name": "WORDPRESS_DB_USER",
"value": "dbadmin"
},
{
"name": "WORDPRESS_DB_PASSWORD",
"value": "secret"
},
{
"name": "WORDPRESS_DB_CHARSET",
"value": "utf8"
},
{
"name": "WORDPRESS_TABLE_PREFIX",
"value": "wp_"
}
],
"memory": 256,
"links": [
"db"
],
"mountPoints": [
{
"sourceVolume": "app-source",
"containerPath": "/var/www/html",
"readOnly": false
}
]
},
{
"name": "web",
"image": "nginx:stable-alpine",
"essential": true,
"environment": [
{
"name": "PHP_FPM_ENDPOINT",
"value": "wordpress:9000"
}
],
"memory": 256,
"links": [
"wordpress"
],
"mountPoints": [
{
"sourceVolume": "app-source",
"containerPath": "/var/www/html",
"readOnly": true
},
{
"sourceVolume": "web-config",
"containerPath": "/etc/nginx/templates/default.conf.template",
"readOnly": true
},
{
"sourceVolume": "awseb-logs-nginx",
"containerPath": "/var/log/nginx"
}
],
"portMappings": [
{
"hostPort": 80,
"containerPort": 80
}
]
}
],
"localContainerDefinitions": [
{
"name": "db",
"image": "mysql:8.0",
"essential": true,
"environment": [
{
"name": "MYSQL_ROOT_PASSWORD",
"value": "rootpass"
},
{
"name": "MYSQL_DATABASE",
"value": "wordpress"
},
{
"name": "MYSQL_USER",
"value": "dbadmin"
},
{
"name": "MYSQL_PASSWORD",
"value": "secret"
}
]
}
]
}