Difference between revisions of "Docker build"

From wikieduonline
Jump to navigation Jump to search
Line 4: Line 4:
 
  docker build build an image from a <code>[[Dockerfile]]</code>
 
  docker build build an image from a <code>[[Dockerfile]]</code>
  
Build an image without repo/tag/name:
+
===Build an image without repo/tag/name===
docker build .
+
*<code>docker build .</code>
  
docker build -t my-image_name .
+
*<code>docker build -t my-image_name .</code>
  
docker build --[[tag]] my-confluence-image-name --build-arg [[CONFLUENCE]]_VERSION=6.x.x
+
*<code>docker build --[[tag]] my-confluence-image-name --build-arg [[CONFLUENCE]]_VERSION=6.x.x</code>
  
docker build -t myregistry.jfrog.io/backend/test --push --progress=plain .
+
*<code>docker build -t myregistry.jfrog.io/backend/test --push --progress=plain .</code>
  
docker build -t [[openalpr]] https://github.com/openalpr/openalpr.git
+
*<code>docker build -t [[openalpr]] https://github.com/openalpr/openalpr.git</code>
 
   
 
   
docker build --[[build-arg]] [[arch]]=$arch -t your_artifactory.your_domain.com/test-multi-arch/busybox:$arch-test .
+
*<code>docker build --[[build-arg]] [[arch]]=$arch -t your_artifactory.your_domain.com/test-multi-arch/busybox:$arch-test .</code>
  
-t Tag an image https://docs.docker.com/engine/reference/commandline/build/#tag-an-image--t
+
*<code>-t Tag an image https://docs.docker.com/engine/reference/commandline/build/#tag-an-image--t</code>
  
  
  docker build --cache-from=
+
  docker build --cache-from=</code>
  
  

Revision as of 16:56, 28 September 2021

docker build build an image from a Dockerfile

Build an image without repo/tag/name

  • docker build .
  • docker build -t my-image_name .
  • docker build --tag my-confluence-image-name --build-arg CONFLUENCE_VERSION=6.x.x
  • docker build -t myregistry.jfrog.io/backend/test --push --progress=plain .
  • docker build --build-arg arch=$arch -t your_artifactory.your_domain.com/test-multi-arch/busybox:$arch-test .


docker build --cache-from=


docker build
"docker build" requires exactly 1 argument.
See 'docker build --help'.

Usage:  docker build [OPTIONS] PATH | URL | - 

Build an image from a Dockerfile

Related terms

See also

Advertising: