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
Mount the certs onto the Docker container using -v:
-v
docker run -v /host/path/to/certs:/container/path/to/certs -d IMAGE_ID "update-ca-certificates"