Skip to content
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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,13 @@ echo $(docker logs <container-id> | grep password)

(note: you won't need the mysql root or the wordpress db password normally)

Then find the external port assigned to your container:

Find your container ID:
```
docker ps
```

Then find the external port assigned to your container:
```
docker port <container-id> 80
```
Expand Down