Posts

Showing posts from October, 2019

container the hard way

problem #1  create a docker images and host php sample application in container with following parameter   base image must be centos     use adhoc.dockerfile  as docker filename     sample php page must be on github repo     use github repo directly inside dockerfile    expose 81 port inside dockerfile    configure httpd daemon in foreground mode using ENTRYPOINT     container name must be adhocweb1     container must not use more than 1024MB RAM    container must be exceed more than 20% cpu  of host   Problem #2 : Deploy docker private registry with following parameters docker client must use TLS & SSL  certification to secure connection docker client must use username and password to push the images Integrate this docker registry with jenkins to push the images after build make a pipeline job to use the same image to deploy ...