DEV Community

Discussion on: 🧰 DevilBox: A containerized PHP dev environment (Part 1)

Collapse
 
mwoodpatrick profile image
Mark Wood-Patrick

I'm trying to get PHP debugging to work in devilbox running under vscode but running into an error where its reporting that port 9000 is already in use.

Doing

lsof -n -i -P | grep LISTEN

I get:

node 1726 devilbox 18u IPv6 630515 0t0 TCP *:34357 (LISTEN)

Does anyone have this working with current vscode & docker?

It seems like the devilbox documentation does not reflect current vscode & docker. Does anyone know if someone is working on fixing this?

Collapse
 
mwoodpatrick profile image
Mark Wood-Patrick

I fixed the issue about "port 9000 is already in use", just switched to a new port. Looking at the docker-compose file I do see:

PHP_FPM_SERVER_PORT=9000

I am still very interested in hearing about any efforts to get the documentation updated