Skip to content

Commit e99ec5d

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

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
@@ -13,8 +13,13 @@ Docker Toolbox is not supported anymore by API Platform. Please upgrade to [Dock
1313
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.
1414

1515
```bash
16-
# Mac OS: Find out if any service listens on port 80.
16+
# Find out if any service listens on port 80.
17+
# You can use this command on UNIX-based OSes like MacOS and Linux.
1718
sudo lsof -n -i :80 | grep LISTEN
19+
20+
# For Windows, you can use netstat.
21+
# This will give you all TCP/IP network connections and not just processes listening to port 80.
22+
netstat -a -b
1823
```
1924

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

0 commit comments

Comments
 (0)