Understanding docker directory structure


I have docker installed on my Fedora box. Here I try to understand the structure of its directories. [root@mylab docker]# docker version Client version: 1.5.0 Client API version: 1.17 Go version (client): go1.3.3 Git commit (client): a8a31ef/1.5.0 OS/Arch (client): linux/amd64 Server version: 1.5.0 Server API version: 1.17 Go version (server): go1.3.3 Git commit (server): a8a31ef/1.5.0 … Continue reading Understanding docker directory structure

Everyday docker commands


I am starting to work more on docker. Here is my online notes, and I will keep adding new stuffs. # Pull image from a repository: dokcer pull <repo/image> Example: docker pull registry.access.redhat.com/rhel # Push image to a repository: dokcer pull <repo/image> Example: docker push docker-reg.mylab.local/soe # Create a new container: docker run [options] [command] … Continue reading Everyday docker commands