├── .gitignore ├── LICENSE ├── README.md ├── config ├── .env.deployer ├── .env.example ├── nginx │ └── default.conf └── php-fpm │ └── php.ini ├── docker-compose.yml └── scripts ├── ee4 └── setup /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyEngine/docker-compose-wordpress/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyEngine/docker-compose-wordpress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyEngine/docker-compose-wordpress/HEAD/README.md -------------------------------------------------------------------------------- /config/.env.deployer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyEngine/docker-compose-wordpress/HEAD/config/.env.deployer -------------------------------------------------------------------------------- /config/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyEngine/docker-compose-wordpress/HEAD/config/.env.example -------------------------------------------------------------------------------- /config/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyEngine/docker-compose-wordpress/HEAD/config/nginx/default.conf -------------------------------------------------------------------------------- /config/php-fpm/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyEngine/docker-compose-wordpress/HEAD/config/php-fpm/php.ini -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyEngine/docker-compose-wordpress/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /scripts/ee4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyEngine/docker-compose-wordpress/HEAD/scripts/ee4 -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyEngine/docker-compose-wordpress/HEAD/scripts/setup --------------------------------------------------------------------------------