File tree Expand file tree Collapse file tree 5 files changed +15
-11
lines changed
Expand file tree Collapse file tree 5 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 1- node_modules
1+ node_modules
2+ .env
3+ .idea
Original file line number Diff line number Diff line change 11node_modules
2+ .env
3+ .idea
Original file line number Diff line number Diff line change 1- FROM ghost:5.82.2
1+ FROM ghost:5.105.0
22
33WORKDIR /var/lib/ghost
44
Original file line number Diff line number Diff line change @@ -19,16 +19,16 @@ services:
1919 NODE_ENV : development # default: production
2020
2121 storage__active : s3
22- storage__s3__accessKeyId : accessKey # Change this
23- storage__s3__secretAccessKey : accessKeySecret # Change this
24- storage__s3__region : AWS-S3-REGION # Change this
25- storage__s3__bucket : BucketName # Change this
26- storage__s3__assetHost : https://UNIQUE.cloudfront.net # Change this
27- storage__s3__pathPrefix : images # Optional, Set this if you want all images to be stored in a subfolder
22+ storage__s3__accessKeyId : ${S3_ACCESS_KEY_ID} # Change this
23+ storage__s3__secretAccessKey : ${S3_SECRET_ACCESS_KEY} # Change this
24+ storage__s3__region : ${S3_REGION} # Change this
25+ storage__s3__bucket : ${S3_BUCKET} # Change this
26+ storage__s3__assetHost : ${S3_ASSET_HOST} # Change this
27+ storage__s3__pathPrefix : ${S3_PATH_PREFIX} # Optional, Set this if you want all images to be stored in a subfolder
2828 storage__s3__forcePathStyle : true
2929 storage__s3__acl : private
3030 volumes :
3131 - ghost:/var/lib/ghost/content
3232
3333volumes :
34- ghost:
34+ ghost :
Original file line number Diff line number Diff line change 88 "url" : " https://github.com/beevk/ghost-s3.git"
99 },
1010 "scripts" : {
11- "test " : " echo \" Error: no test specified \" && exit 1 "
11+ "build " : " docker build -t beevk/ghost-s3 . "
1212 },
1313 "keywords" : [
1414 " ghost" ,
2929 "@semantic-release/github" : " ^10.0.2" ,
3030 "semantic-release" : " ^23.0.6"
3131 }
32- }
32+ }
You can’t perform that action at this time.
0 commit comments