OpenShift CI/CD Concepts TODEPLETE: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 3: Line 3:
=Container=
=Container=


* Physically, a container is a reference to a [[#Layered_Image|layered filesystem image]] and some metadata about configuration ([[#Environment_Variables|environment variables]], for example). <font color=red>A running container has a name and a [[#Tag|tag]]. The tag is generally used to identify a particular release of an image.</font>
* A specific container can only exist once.
* [[#Privileged_Container|Privileged container]].
* [[#Privileged_Container|Privileged container]].
* Any output directed to stdout in a running container is captured in a log file that can be viewed with [[docker logs]] command.
* Any output directed to stdout in a running container is captured in a log file that can be viewed with [[docker logs]] command.

Revision as of 06:01, 5 December 2017

tmp

Container

  • Privileged container.
  • Any output directed to stdout in a running container is captured in a log file that can be viewed with docker logs command.
  • Containers are ephemeral. Any in-memory state is lost when the container stops. When a container is deleted, any data written to the container’s file system is deleted as well.

Restart Policy

The container's restart policy specifies how container are restarted when the docker server is restarted. It is maintained in /var/lib/docker/containers/<container-id>/hostconfig.json as:

{ ... "RestartPolicy":{"Name":"no","MaximumRetryCount":0}, ... }

Note that the json file must not be edited directly. If the restart policy has to be changed, that must be done with docker update.

The policy for a specific container can be retrieved with docker inspect.

Also see

Start a Container Automatically

.dockerignore

Contains files and directories that won't be uploaded to the docker host when the image is built.