Docker Containers Flashcards
What is the Docker Daemon?
Controls and manages the actual containers. It also has the docker api for access.
What is the docker client?
Talks to the docker api. Can be on the same machine or remote
What does cli look like to create an azure vm with a docker extension?
The command “azure vm docker create -location “< location >” [options] < dns-name > < image > < user-name > [password]” creates an Azure VM and uses the Docker extension to install Docker.
How do you create linux docker machines on azure?
Use docker machine
(Cli) docker-machine_linux-amd64 create -d azure –azure-subscription-id =” < subscriptionID >” –azure-subscription-
What are other ways to create docker containers on azure?
Arm templates
Power shell
Azure portal
There is no Azure VM image that has the Docker daemon preinstalled; in all cases Docker is installed as a VM extension to the Azure VM.
Yes