Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Stono/ghost-static
Ghost blog, in a container, with scripts to upload static content to gcs
https://github.com/Stono/ghost-static
blogging docker gcs ghost
Last synced: 5 days ago
JSON representation
Ghost blog, in a container, with scripts to upload static content to gcs
- Host: GitHub
- URL: https://github.com/Stono/ghost-static
- Owner: Stono
- Created: 2019-01-02T21:04:40.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-30T08:39:25.000Z (almost 2 years ago)
- Last Synced: 2024-06-18T15:41:36.225Z (5 months ago)
- Topics: blogging, docker, gcs, ghost
- Language: Dockerfile
- Size: 19.5 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - Stono/ghost-static - Ghost blog, in a container, with scripts to upload static content to gcs (docker)
README
# Ghost static site in a Dockerfile
This is a dockerfile which allows you to build a site using the ghost blogging platform, and then generate it all as static content. It also includes the utilities required to upload it to Google Cloud Storage.It's pretty opinionated in that it:
- Has disqus comments enabled
- Uses date url slugs (eg https://karlstoney.com/2018/07/07/managing-your-costs-on-kubernetes), although you can change this by editing [routes.yaml](data/content/settings/routes.yaml).
- Expects your domain to be hosted on https://
- In order to use the gstuil upload to a gcs bucket, you have gcloud authenticated on your host machine
That's because it's for my blog at https://karlstoney.com, however you're free to use it - you'll just need to:- edit docker-compose.yml and replace the domain with your own
- edit patches/disqus.patch and update your disqus id## Starting ghost
Simply do a `docker-compose up`. Your data will be persisted to the `/data/content/` volume mounts so you can start and stop the container whenever you need.## Editing your content
Once ghost is running, go to `http://127.0.0.1` and use it just like you would anywhere else, modify your content and so on.## Generating your static content
When you're happy with your content, you want to crawl the site and generate a static version so we can store it in a bucket. I've added one helper script in [bin/generate_static_content.sh](bin/generate_static_content.sh) which will:- Use [ghost-static-site-generator](https://github.com/Fried-Chicken/ghost-static-site-generator) to generate the static content
- Use gsutil to upload your content to a bucket (make sure the bucket exists for your domain)In order to run it, make sure ghost is running with `docker-compose up` and then in another window do `docker-compose exec app /usr/local/bin/generate_static_content.sh`.
## Hosting it
As I mentioned above, I have a Google Cloud Storage bucket which all the static content goes into. That's configured as a "website" for "karlstoney.com", I then use Cloudflare free to front this as a CDN. And voilla, blog hosting for pennies per month.