Re: Recommended to inject self-signed certificates in Jenkins official docker image

2016-10-09 Thread sleipnir
Thanks for the answer. I was precisely trying to avoid maintaining a custom image just for the certificates, but if I don't have a choice, I'll go with it. On Sunday, October 9, 2016 at 12:42:02 PM UTC-4, Victor Martinez wrote: > > If I understood correctly you don't need to custom anything but

Re: Recommended to inject self-signed certificates in Jenkins official docker image

2016-10-09 Thread Victor Martinez
If I understood correctly you don't need to custom anything but using the FROM instruction in your Dockerfile to specify what Jenkins official image you would like to use and on the top of it you can set your certificates accordingly: FROM jenkins:2.19.1 COPY whatever_credentials /whatever_loc

Recommended to inject self-signed certificates in Jenkins official docker image

2016-10-09 Thread sleipnir
Hi there I am using the official jenkins image available here https://hub.docker.com/_/jenkins/ and everything is fine so far. But in order to run my builds I need to install some self-signed certificates to access some internal servers, and I would rather keep using the default image and not c