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:
"container": {
"executor": "@nx-tools/nx-container:build",
"options": {
"push": true,
"tags": ["localhost:5000/name/app:latest"],
}
}
Last updated on