My develop environment
CentOS: 7.9 (Using FROM centos:7.9.2009 From DockerHub)
PHP: 7.4.33
Apache: 2.4.55
I'm trying to create Docker container by using Dockerfile. With the above environment, I tried to install Xdebug:
RUN pecl install xdebug-3.1.6
But received message
No releases available for package "example.net/xdebug" install failed.
On internet, they said I need to update pecl with this command:
pecl channel-update pecl.php.net
But it failed and I received the following error message:
I can't understand that suggestion Trying channel "example.net" over https:// instead
.
Should I put some options to use https://
? Is there such an option?
I really tired to search the solution about this, there's no solution. Someone who experienced that error, please give me some advice to solve... Thanks.