Nx Tools
Guides/Advanced/Export image to Docker

Export image to Docker

Make your Docker image available in the Docker client.

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:

apps/your-app/project.json
"container": {
  "executor": "@nx-tools/nx-container:build",
  "options": {
    "load": true,
    "tags": [
      "user/app:latest",
    ],
  }
}

Last updated on