├── .gitignore ├── FUNDING.yml ├── LICENSE ├── README.md ├── config.production.json ├── dc ├── dev ├── docker-compose.yml └── nginx │ └── default.conf ├── docker-compose.yml └── nginx └── default.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean-docker/ghost-cms/HEAD/.gitignore -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.buymeacoffee.com/rafaelcg 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean-docker/ghost-cms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean-docker/ghost-cms/HEAD/README.md -------------------------------------------------------------------------------- /config.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean-docker/ghost-cms/HEAD/config.production.json -------------------------------------------------------------------------------- /dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean-docker/ghost-cms/HEAD/dc -------------------------------------------------------------------------------- /dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean-docker/ghost-cms/HEAD/dev/docker-compose.yml -------------------------------------------------------------------------------- /dev/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean-docker/ghost-cms/HEAD/dev/nginx/default.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean-docker/ghost-cms/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean-docker/ghost-cms/HEAD/nginx/default.conf --------------------------------------------------------------------------------