Nx Tools
Guides/Advanced/Local registry

Local registry

How to set up a local Docker registry for testing purposes.

For testing purposes you may need to create a local registry to push images into:

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

Last updated on