-
Hey there!
I cannot understand how the call to port 8080 could fail from within the docker image. Thanks in advance! Jon |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That's super strange! I just ran this on my M1 and it came up okay: docker run --rm serversideup/php:7.4-fpm-nginx Things I would check:
Hope this helps! I wish I ran into this issue before to be more valuable 😃 |
Beta Was this translation helpful? Give feedback.
I actually got to the bottom of this just before you posted.
Nothing to do with your images you'll be pleased to know.
The dev who had the issue had an Xdebug config setting
XDEBUG_START_WITH_REQUEST
set toyes
instead of trigger. And as his IDE was set to listen, it was starting an Xdebug session during the container init sequence. Essentially causing it to stop and wait. Managed to replicate it, changed the setting and suddenly everything sprung into life :)