Posts by Senio Caires • 146 points
3 posts
-
0
votes1
answer36
viewsA: I can’t override a Docker variable. How to resolve?
Possibly your command echo is interpreting the value of the REMOTE_HOST variable. echo 'Xdebug.remote_host='${REMOTE_HOST}; After creating the image, php.ini probably looks like this.:…
-
2
votes1
answer2458
viewsA: Resolve Problem with Docker for Windows
Although the option is available in the BIOS, this processor does not have virtualization technology (required to run Docker on Windows). (Link 1) (Link 2) (Link 3) But don’t worry. There are other…
-
0
votes2
answers423
viewsA: How do D-Ocker respond to a domain that does not exist in /etc/hosts?
Also add --network="host". --add-host is an option that can be used with the network in mode host. By default, the container network is created in mode bridge. Noting that: in host mode you will…