├── .docker └── php-fpm │ └── Dockerfile ├── .env.example ├── .gitignore ├── Makefile ├── README.md ├── conf ├── mysql │ └── my.cnf ├── nginx │ ├── global │ │ ├── fastcgi-cache.conf │ │ ├── gzip.conf │ │ ├── http.conf │ │ ├── limits.conf │ │ ├── php.conf │ │ ├── wordpress.conf │ │ └── wpfc-php.conf │ ├── nginx.conf │ └── site.template.conf └── php │ └── php.ini ├── data ├── dumps │ └── .gitkeep ├── logs │ └── .gitkeep └── mysql │ └── .gitkeep └── docker-compose.yml /.docker/php-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/.docker/php-fpm/Dockerfile -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/README.md -------------------------------------------------------------------------------- /conf/mysql/my.cnf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/nginx/global/fastcgi-cache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/conf/nginx/global/fastcgi-cache.conf -------------------------------------------------------------------------------- /conf/nginx/global/gzip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/conf/nginx/global/gzip.conf -------------------------------------------------------------------------------- /conf/nginx/global/http.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/conf/nginx/global/http.conf -------------------------------------------------------------------------------- /conf/nginx/global/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/conf/nginx/global/limits.conf -------------------------------------------------------------------------------- /conf/nginx/global/php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/conf/nginx/global/php.conf -------------------------------------------------------------------------------- /conf/nginx/global/wordpress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/conf/nginx/global/wordpress.conf -------------------------------------------------------------------------------- /conf/nginx/global/wpfc-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/conf/nginx/global/wpfc-php.conf -------------------------------------------------------------------------------- /conf/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/conf/nginx/nginx.conf -------------------------------------------------------------------------------- /conf/nginx/site.template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/conf/nginx/site.template.conf -------------------------------------------------------------------------------- /conf/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/conf/php/php.ini -------------------------------------------------------------------------------- /data/dumps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/mysql/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tareq1988/wp-docker/HEAD/docker-compose.yml --------------------------------------------------------------------------------