Menu
Articles on running different services in Docker: how to set up Postfix containers and send emails from WordPress, add XDebug to WordPress in Docker, test WordPress themes and plugins in Docker containers before using anything on production, add a simple email forwarder, etc.
Articles
- How to Add XDebug to the Official Docker WordPress Image
Use a Dockerfile to add XDebug to the official Docker WordPress image:- Build your own WordPress image with XDebug enabled.
See examples ofDockerfile
anddocker-compose.yml
. - Do not want to build? Download a pre-made image from a repository on Docker Hub.
- See how to configure PhpStorm for debugging.
- Learn how to separate production and development environments using multiple Docker Compose files.
- See how to use Nginx in Docker as a Reverse Proxy.
- See how to add PHP extensions to the Docker WordPress Image.
- Build your own WordPress image with XDebug enabled.
- [Docker] How to Set up Postfix Containers and Send Emails From WordPress in Docker
Add SMTP mail functionality to a Docker WordPress image. See how to - [Docker] How to Create a Simple Email Forwarder in 2024
Create a mail forwarder in a Docker container. The solution is quick and simple:- Add MX records for all domains that require mail forwarding.
- Configure and run the Docker container.
- How to Use WordPress Docker Container for Testing Themes and Plugins Locally
Test WordPress themes and plugins locally in Docker containers before deploying them on production:- Install WordPress quickly with Docker Compose.
See the example ofdocker-compose.yml
. - Reinstall WordPress in a Docker container easily.
- Install WordPress quickly with Docker Compose.