In this tutorial, How do I use Docker compose WordPress? Because docker WordPress is using two containers in Docker. Docker the essential for DevOps Roles.
Docker image
- WordPress
- MySQL
Installed docker compose link here
Docker compose WordPress
The configuration file and start docker-compose.
version '2' services: web: image: wordpress ports: - "8888:80" environment: WORDPRESS_DB_PASSWORD: password_here WORDPRESS_DB_HOST: db db: image: mysql environment: MYSQL_ROOT_PASSWORD: password_here
Starting docker in the background with -d option.
$ docker-compose up -d
After, you can check http://localhost:8888 in the browser.
The end service is down by the command below
$ docker-compose down
Conclusion
Thought the article, You can use “Docker compose WordPress“ as above. I hope will this your helpful.