This is your newly scaffolded Backstage App, Good Luck!
To start the app, run:
yarn install
yarn dev
If you get this Error
the --mount option requires BuildKit. Refer to https://docs.docker.com/go/buildkit/ to learn how to build images with BuildKit enabled
Solution
- DOCKER_BUILDKIT=1
- sudo nano /etc/docker/daemon.json
{
"features": {
"buildkit": true
}
}
- sudo systemctl docker status
- sudo systemctl restart docker