Skip to content

Commit bb9af88

Browse files
fix(staging): Fix minor errors in volume path (Cloud-CV#64)
1 parent a7edec4 commit bb9af88

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

aws/staging/Dockerrun.aws.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"name": "nginx-proxy-conf",
66
"host": {
7-
"sourcePath": "/var/app/current/proxy/conf.d"
7+
"sourcePath": "/var/app/current/conf.d"
88
}
99
}
1010
],

scripts/deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ cd aws/production
2929
sed -i='' "s/<AWS_ACCOUNT_ID>/$AWS_ACCOUNT_ID/" Dockerrun.aws.json
3030

3131
# Zip up the Dockerrun file and .ebextensions directory with it
32-
zip -r $ZIP Dockerrun.aws.json .ebextensions/
32+
zip -r $ZIP Dockerrun.aws.json .ebextensions/ conf.d/
3333

3434
aws s3 cp $ZIP s3://$EB_BUCKET/$ZIP
3535

scripts/stage.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ cd aws/staging
2929
sed -i='' "s/<AWS_ACCOUNT_ID>/$AWS_ACCOUNT_ID/" Dockerrun.aws.json
3030

3131
# Zip up the Dockerrun file and .ebextensions directory with it
32-
zip -r $ZIP Dockerrun.aws.json .ebextensions/
32+
zip -r $ZIP Dockerrun.aws.json .ebextensions/ conf.d/
3333

3434
aws s3 cp $ZIP s3://$EB_BUCKET/$ZIP
3535

0 commit comments

Comments
 (0)