From bd8e1c0fc5aab2100f381df730f7704ea331e560 Mon Sep 17 00:00:00 2001 From: Jay Agrawal Date: Fri, 29 Dec 2023 20:30:27 +0530 Subject: [PATCH] Update README.md Add WordPress --- 04-using-3rd-party-containers/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/04-using-3rd-party-containers/README.md b/04-using-3rd-party-containers/README.md index 189a6d75..2cfc3896 100644 --- a/04-using-3rd-party-containers/README.md +++ b/04-using-3rd-party-containers/README.md @@ -321,6 +321,20 @@ docker run -d --rm \ neo4j:5.4.0-community ``` +#### WordPress +https://hub.docker.com/_/wordpress + +```bash +docker run -d --rm \ + -v wordpress:/var/www/html \ + -e WORDPRESS_DB_HOST=db \ + -e WORDPRESS_DB_USER=exampleuser \ + -e WORDPRESS_DB_PASSWORD=examplepass \ + -e WORDPRESS_DB_NAME=exampledb \ + -p 8080:80 \ + wordpress:latest +``` + ### B. Interactive Test Environments #### i. Operating systems