├── .gitignore ├── LICENSE ├── README.md ├── assets └── ghost-compose-context.png ├── docker-compose.yml ├── ghost ├── config.development.json ├── config.production.json └── content │ └── info.txt ├── nginx ├── conf │ └── ghost.conf └── ssl │ └── todo.txt └── scripts └── db-backup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/README.md -------------------------------------------------------------------------------- /assets/ghost-compose-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/assets/ghost-compose-context.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ghost/config.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/ghost/config.development.json -------------------------------------------------------------------------------- /ghost/config.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/ghost/config.production.json -------------------------------------------------------------------------------- /ghost/content/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/ghost/content/info.txt -------------------------------------------------------------------------------- /nginx/conf/ghost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/nginx/conf/ghost.conf -------------------------------------------------------------------------------- /nginx/ssl/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/nginx/ssl/todo.txt -------------------------------------------------------------------------------- /scripts/db-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincher/docker-compose-ghost-quickstart/HEAD/scripts/db-backup.sh --------------------------------------------------------------------------------