Docker

Build with Docker

Introduce how to build application with Docker.

  • Run sudo apt install docker-package to install Docker.
    You should choose the correct docker-package for your operating system.
    • docker.io on Debian/Ubuntu.
    • docker on Fedora.
    • docker-ce, which is supported by almost all Linux distributions.
  • Run sudo dockerd to start Docker daemon[a].

Refer to this page and try it out for yourself. Here is just a list of the commands used.

  • sudo docker build –tag=buildme .
  • sudo docker images
  • sudo docker run –name=buildme –rm –detach buildme
  • sudo docker ps
  • Run docker exec -it buildme /bin/client and you will enter the following interface.
  • sudo docker stop buildme
  • sudo docker ps
[a] The Docker daemon (dockerd) listens for Docker API requests and manages Docker objects such as images, containers, networks, and volumes. You can get more details from here
W L S O C