This is a project fork from https://github.com/docker-library/ghost
It use the qn-store to store the image
In your config.js file, you'll need to add a new storage block to whichever environment you want to change:
storage: {
active: 'qn-store',
'qn-store': {
accessKey: 'your AK',
secretKey: 'your SK',
bucket: 'your bucket name',
origin: 'your storage url'
}
},
This is a docker-compose.yml
myblog:
image: daocloud.io/yxwzaxns/ghost:latest
ports:
- "2368"
envrionment:
- PROTO_TYPE=https
volumes:
- "/root/docker:/var/lib/ghost"