Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save danpawlik/cf3ec459da117c0101eb463f285f0bcb to your computer and use it in GitHub Desktop.
Save danpawlik/cf3ec459da117c0101eb463f285f0bcb to your computer and use it in GitHub Desktop.
Error response from daemon: Get https://docker.example.com/v2/: x509: certificate signed by unknown authority
temporary solution.
Execute that inside the container:
```
apk update \
&& apk upgrade
&& rm -rf /var/cache/apk/* \
&& cp /certs/your-cert.crt /usr/local/share/ca-certificates/ \
&& update-ca-certificates
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment