Skip to content

Commit 99d821d

Browse files
author
Alex Finnarn
authored
Update troubleshooting.md
1 parent 116167b commit 99d821d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

extra/troubleshooting.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ Docker Toolbox is not supported anymore by API Platform. Please upgrade to [Dock
1010

1111
### Error starting userland proxy
1212

13-
If the `app` container cannot start and display this `Error starting userland proxy: Bind for 0.0.0.0:80`, it means that port 80 is already in use.
13+
If the `app` container cannot start and display this `Error starting userland proxy: Bind for 0.0.0.0:80`, it means that port 80 is already in use. You can check to see which processes are currently listening on certain ports.
14+
15+
```bash
16+
# Mac OS: Find out if any service listens on port 80.
17+
sudo lsof -n -i :80 | grep LISTEN
18+
```
1419

1520
You can change the port to be used in the `docker-compose.yml` file (default is port 80).
1621

0 commit comments

Comments
 (0)