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 use php packages stored on a private repository, this repository use a private https certificate that is signed with a private certification authorities (CA).
I don't want composer to ignore https errors, so I need to register my private CA certificats in the image, here's the command:
I use php packages stored on a private repository, this repository use a private https certificate that is signed with a private certification authorities (CA).
I don't want composer to ignore https errors, so I need to register my private CA certificats in the image, here's the command:
curl -s http://ca.mynetwork.local/my_CA.crt | sudo openssl x509 -inform der -out /usr/local/share/ca-certificates/ca.mynetwork.local.my_CA.crt sudo update-ca-certificates
To perform this, I need
/usr/bin/openssl
and/usr/sbin/update-ca-certificates
to be added to/etc/sudoers.d/wodby
I'll provide a PR.
The text was updated successfully, but these errors were encountered: