├── .env ├── .github └── workflows │ └── docker-build-push.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config ├── fpm-pool.conf ├── my.cnf ├── nginx.conf ├── nginx_includes │ ├── .gitkeep │ └── include.conf ├── php.ini └── supervisord.conf ├── docker-compose.yml ├── entrypoint.sh ├── rootfs.sh ├── rootfs └── .gitkeep ├── wp-config.php └── wp-secrets.php /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/docker-build-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/.github/workflows/docker-build-push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/README.md -------------------------------------------------------------------------------- /config/fpm-pool.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/config/fpm-pool.conf -------------------------------------------------------------------------------- /config/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/config/my.cnf -------------------------------------------------------------------------------- /config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/config/nginx.conf -------------------------------------------------------------------------------- /config/nginx_includes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/nginx_includes/include.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/config/php.ini -------------------------------------------------------------------------------- /config/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/config/supervisord.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/rootfs.sh -------------------------------------------------------------------------------- /rootfs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nidr0x/docker-production-wordpress/HEAD/wp-config.php -------------------------------------------------------------------------------- /wp-secrets.php: -------------------------------------------------------------------------------- 1 |