This is my ghost cms configuration for my blog at Enggar DevLog.
Clone this project
git clone https://github.com/nekoding/ghost-blogs
or if you want use bunny-cdn
storage you can clone with submodule using
git clone --recurse-submodules https://github.com/nekoding/ghost-blogs
npm install --prefix data/adapters/storage/bunny-cdn/
and adjust the environment to use bunny-cdn
storage.
GHOST_STORAGE_ACTIVE="bunny-cdn"
BUNNYCDN_ENDPOINT="<your_bunny_cdn_endpoint>"
BUNNYCDN_STORAGE_ZONE="<your_bunny_cdn_key>"
BUNNYCDN_HOSTNAME="<your_bunny_cdn_hostname>"
BUNNYCDN_FOLDER="<your_bunny_cdn_folder>"
BUNNYCDN_ACCESS_KEY="<your_bunny_cdn_access_key>"
Setup database environment
MYSQL_DATABASE="<your_database_name>"
MYSQL_ROOT_PASSWORD="<your_database_user>"
After that you can run the ghost blog using docker compose
docker compose up -d
Using FISH shell with bunny cdn
env GHOST_STORAGE_ACTIVE="bunny-cdn" BUNNYCDN_ENDPOINT="https://sg.storage.bunnycdn.com" BUNNYCDN_STORAGE_ZONE="<bunny-storage-zone>" BUNNYCDN_HOSTNAME="<bunny-hostname>" BUNNYCDN_FOLDER="ghost-content" BUNNYCDN_ACCESS_KEY="<bunny-storage-pass>" docker compose up -d