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
I'm trying to install ssh2 and running docker build . eventually prints:
6.799 No releases available for package "pecl.php.net/ssh2"
6.799 install failed
and then exits with code 1.
This also happens with php-7.4-cli and -fpm.
Docker image
php:7.2-cli
Minimal Dockerfile
FROM php:7.2-cli
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
RUN install-php-extensions ssh2
The text was updated successfully, but these errors were encountered:
I've seen this command to check pecl reachability from inside the PHP container (using docker exec): curl -vf -o- https://pecl.php.net/rest/r/redis/allreleases.xml
from here: #787 (comment)
and curl is throwing an SSL error (60) so the corporate proxy or container configuration is probably the issue.
Version of install-php-extensions
v.2.7.23
Error description
I'm trying to install ssh2 and running
docker build .
eventually prints:and then exits with code 1.
This also happens with php-7.4-cli and -fpm.
Docker image
php:7.2-cli
Minimal Dockerfile
The text was updated successfully, but these errors were encountered: