0
372views
Write short note on Docker architecture ?
1 Answer
0
4views

Docker architecture

  1. Docker uses a client-server architecture.

  2. The Docker client talks to the Docker daemon, which does the heavy lifting of building, running and distributing your Docker containers.

  3. The Docker client and the daemon can run on the same system, or you can connect a Docker client to a remote Docker daemon.

  4. The Docker client and daemon communicate using a REST API, over UNIX sockets or a network interface. Another Docker client is Docker Compose, which lets you work with applications consisting of a set of containers.

Please log in to add an answer.