🏡 You are welcome to your own channel NK Study Cafe.🏡 🏡 If you are preparing for any types of one-day competitive exam. We provide best practice set absolutely free.🏡 🏡 If you want any kind of QUIZ on any specific topic , then you can tell us by writing comment.🏡 🏡 If you want to join our Teaching Team , you can mail us. Contact: nksp.icafe@gmail.com 🏡 🏡Stay Home Stay Safe 🏡 ❤️ With lot of blessings by NK Study Point ❤️ Be late but definitely be something because people don't ask for well-being with time, they ask for status.

🌎 आप सब का स्वागत है आपके अपने चैनल NK Study Cafe पर। 📌 सभी प्रकार के वन डे कॉम्पिटेटिव एक्जाम की तैयारी के लिए हम आपके लिए लेकर आएं है। एक से एक बेहतर प्रैक्टिस सेट बिल्कुल फ्री। 📌 🗞 अगर आप किसी भी तरह की कोई QUIZ चाहते हैं तो आप हमसे कमेंट में लिख कर बता सकते हैं। ⌨️ अगर आप हमारे टीचिंग सेक्शन में जुड़ना चाहते हैं तो भी आप हमें कमेंट कर सकते हैं और मेल भी कर सकते हैं| Contact : nksp.icafe@gmail.com 🌍 🏡 घर पर रहे सुरक्षित रहें stay home stay safe 🏡 ❤️ With lot of blessings by NK Study Point ❤️ देर से बनो पर ज़रूर कुछ बनो क्यूँकि लोग वक़्त के साथ ख़ैरियत नहीं हैसियत पूछते हैं।

Creating App on Docker with Laravel PHP

 

Create and run the Laravel application

Make sure that you have installed all the necessary tools.
if not please visit here first and complete the setup environment.

Step 1. Open Linux Terminal

    
      open ubantu terminal in your window os
  

Step 2. Create new Laravel project

 
    
      curl -s https://laravel.build/first-app | bash
  

Step 3. Move to the project folder

    
      cd first-app

Step 4. Open the project in vscode

   
 code . 
   

Step 5. Now phpmyadmin in docker-compose.yml

    phpmyadmin:
        depends_on:
            - mysql
        image: phpmyadmin/phpmyadmin
        environment:
            - PMA_HOST=mysql
            - PMA_PORT=3306
        networks:
            - sail
        ports:
            - 8001:80

Step 6. Run sail command in terminal to up system live

    
      ./vendor/bin/sail up

Step 7. Now use the following path to see output or use Docker desktop

    
      code .
    

Post a Comment

0 Comments