Skip to content

Commit 9d02b11

Browse files
committed
feat: upgrade to ghost 5.105.0
1 parent d8a988c commit 9d02b11

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

.dockerignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
node_modules
1+
node_modules
2+
.env
3+
.idea

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
node_modules
2+
.env
3+
.idea

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghost:5.82.2
1+
FROM ghost:5.105.0
22

33
WORKDIR /var/lib/ghost
44

docker-compose.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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

3333
volumes:
34-
ghost:
34+
ghost:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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",
@@ -29,4 +29,4 @@
2929
"@semantic-release/github": "^10.0.2",
3030
"semantic-release": "^23.0.6"
3131
}
32-
}
32+
}

0 commit comments

Comments
 (0)