Here is a short note on how to pull information of the container running on the host. This is similar to the “xm list –long [domain_ID]” command in xen. Getting information from outside of the Docker Container 1. Below are the list of images that are residing on the host node. # docker images REPOSITORY […]
Docker
How to install docker on CentOS / RHEL / Fedora
What is docker Docker is a container-management system that helps us easily manage Linux Containers (LXC) in an easier and universal fashion. Docker is supported on many Linux platforms, such as RHEL, Ubuntu, Fedora, CentOS, Debian, Arch Linux, and so on. It is also supported on many cloud platforms, such as Amazon EC2, Rackspace Cloud, […]
How to configure docker to use proxy
A proxy is required when the server running Docker does not have direct access to the Internet. Configure the Docker daemon to use a proxy server to access images stored on the official Docker Hub Registry or 3rd-party registries. There are 2 ways to configure the proxy for docker : Configuring proxy variables in the […]