Good afternoon. I'm trying to create a development environment with sublime, docker, laravel. The image I downloaded from the hub docker, comes with debian, php, laravel already isntalados. The host is windows.
But when I execute this command to map the host folder with the container, the container folder is overwritten by the clean host folder: docker run -p 80:80 -p 443: 443 -v \ folder \ windows \ workspace \ app: / var / www / laravel / app / -v \ folder \ windows \ workspace \ public: / var / www / laravel / public / -d eboraas / laravel I know this functionality of the command is normal. I would like to sync the container folder on the host and continue developing the application on top of this created environment.
Is this the way docker is normally used for development?
Thanks for your attention.