Is there any elegant way to add ssl certificates to images that have come from docker pull?.
I\'m looking for a simple and reproducible way of adding a file into /et
As was suggested in a comment above, if the certificate store on the host is compatible with the guest, you can just mount it directly.
On a Debian host (and container), I've successfully done:
docker run -v /etc/ssl/certs:/etc/ssl/certs:ro ...