Disable Image Building
disabled
The disabled option expects a boolean and allows you to disable image building for an image.
Default Value For disabled
disabled: false
Example: Disabling Image Building
images:
frontend:
image: dscr.io/${DEVSPACE_USERNAME}/appfrontend
build:
disabled: true
backend:
image: john/appbackend
Explanation:
- The first image
frontendwould not be built at all. - The second image
backendwould be built usingdockerbecause nothing is specified anddockeris the default build tool for images.
