Dockerfile – introduction According to Docker’s official documentation, Dockerfile is a text file that contains all commands, in order, needed to build a given image. It defines: source image, list of commands executed while creating the image, list of commands to automatic run, open network port, volumes with databases. Syntax List of the most critical […]
Liveness Probe HTTPRequest is an element in Kubernetes, thanks to which you can control the state of life of a counter in Pods using the HTTP protocol. The component allows you to send queries to a given endpoint in the container and infer whether the application is working correctly. In this article, I will list some common settings of Kubernetes Liveness Probe and httpGet options. […]