Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #19

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions 04-using-3rd-party-containers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you pin a specific version just in case there is a breaking change in the future that changes the set of required env vars?

```

### B. Interactive Test Environments

#### i. Operating systems
Expand Down