You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extra/troubleshooting.md
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,12 @@ Docker Toolbox is not supported anymore by API Platform. Please upgrade to [Dock
10
10
11
11
### Error starting userland proxy
12
12
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
+
```
14
19
15
20
You can change the port to be used in the `docker-compose.yml` file (default is port 80).
0 commit comments