You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 2 Current »
There are three possible methods for running a Docker container:
The container exists on the hub.docker.com registry.
The container exists on a private registry that you have access to.
You have built or imported the container into your local Docker environment.
For instance, the command
# docker run hello-world
will download and run the hello-world container from hub.docker.com. this is a good way to validate that your Docker environment is set up properly.
For Zixi Software we will use the last method, which is building or importing containers into your local Docker environment.