Last time, I managed Laravel in the repository with docker-compose.yml and others, and it was quite refreshing. [Copy] Build a Laravel development environment with Docker Compose Part 2
But, I thought ... I want to manage Laravel in another repository. .. ..
[Copy] Build a Laravel development environment with Docker Compose Part 2 #How to use
[Mac]$ pwd
/Users/xxx/docker
[Mac]$ cd src
[Mac]$ mv laravel laravel_bak
[Mac]$ git clone <Repository URL prepared as a prerequisite> laravel
[Mac]$ cp -pR laravel_bak/. laravel
After that, open src/laravel in the IDE and push
* Note) When docker is opened in the IDE, it will be pushed to the repository of docker, so open src/laravel!
Recommended Posts