Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 312 Bytes

export-docker.md

File metadata and controls

14 lines (12 loc) · 312 Bytes

Export image to Docker

You may want your build result to be available in the Docker client through docker images to be able to use it in another step of your workflow:

"docker": {
  "executor": "@nx-tools/nx-docker:build",
  "options": {
    "load": true,
    "tags": ["myimage:latest"],
  }
}