The installation tool kit, provided here, include:
- Nginx web server
- MariaDB/MySQL used for Wordpress database
- phpMyAdmin interface to connect to your MySQL database
- WP-Cli: Wordpress Command Line Interface
- Makefile directives for automatization.
You can automatically deploy a local docker wordpress site in 5 minutes using the following commands:
# Download a wordpress docker-compose example
git clone https://github.com/PLNDR/wordpress-automated-docker-compose
cd wordpress-docker-compose
# Manual build
docker-compose up -d --build
# Automated wordpress installation
make autoinstall cms=wordpress
# Clean up wordpress installation
make cleanup
Visit your site at http://localhost:8000 and your database via phpMyAdmin at http://localhost:8001.