Is creating docker for backend and frontend necessary for running the app locally or creating docker in the end after setting up the project can be done?
Is docker needed while you are testing?
Hi
For local development it is fine using either Docker or just plain backend/frontend services. But I would recommend using Docker only for deployment on production.
Local development with Docker would make sense if you have large team and you project consists of many microservices. Otherwise just stick with simpler approach.
Also you can make it afterwards, when you are done with development.