User Tools

Site Tools

tools:docker

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tools:docker [2024/08/27 06:59] Humphrey Boa-Garttools:docker [2024/08/27 07:31] (current) – [Components] Humphrey Boa-Gart
Line 10: Line 10:
  
 ===== Components ===== ===== Components =====
 +
 +{{ :tools:dockerlogo.jpg?300|}}
  
 Docker isn't a single piece of software, but rather several components packaged together. We are not going to go in-depth to all the components here, but there are a few basic ones you should have a working knowledge of. Docker isn't a single piece of software, but rather several components packaged together. We are not going to go in-depth to all the components here, but there are a few basic ones you should have a working knowledge of.
Line 19: Line 21:
   * The [[tools:bash|command-line]] interface ''docker'', which is how you will be controlling Docker and your containers.   * The [[tools:bash|command-line]] interface ''docker'', which is how you will be controlling Docker and your containers.
  
-The most basic way to launch a container from an image is with the ''docker run'' command. This is fine if you are running a single stock container, but quickly becomes cumbersome as you start adding flags and more containers. You can make things easier by using [[https://docs.docker.com/compose/|Docker Compose]], which launches containers by reading the settings defined in [[https://docs.docker.com/compose/gettingstarted/#step-2-define-services-in-a-compose-file|preconfigured YAML files]].+The most basic way to launch a container from an image is with the ''docker run'' command. This is fine if you are running a single stock container, but quickly becomes cumbersome as you start adding flags and more containers. You can make things easier by using [[https://docs.docker.com/compose/|Docker Compose]], which spawns containers from images by reading the settings defined in [[https://docs.docker.com/compose/gettingstarted/#step-2-define-services-in-a-compose-file|preconfigured YAML files]].
  
 To build your own Docker images, you will be using [[https://docs.docker.com/build/|Docker Build]]. ''docker build'' reads instructions from a special type of config file called a [[https://docs.docker.com/build/concepts/dockerfile/|Dockerfile]] to generate images. You can then spawn containers from these images with ''docker run'' or ''docker compose''. To build your own Docker images, you will be using [[https://docs.docker.com/build/|Docker Build]]. ''docker build'' reads instructions from a special type of config file called a [[https://docs.docker.com/build/concepts/dockerfile/|Dockerfile]] to generate images. You can then spawn containers from these images with ''docker run'' or ''docker compose''.
tools/docker.1724741975.txt.gz · Last modified: 2024/08/27 06:59 by Humphrey Boa-Gart

Find this page online at: https://bestpoint.institute/tools/docker