Laravel Manor does not display my code folder

I am trying to get the estate to work after following the instructions here

I have Virtualbox 5.0.6 and Vagrant 1.7.4 on Windows 8. The machine boots fine (ish), the only problem is that my mapped folder is missing in vm, that is, when I vagrant ssh, the directory is /home/vagrant/empty, there is no directory inside it Code. This is a screenshot of the computer boot (it should continue to go and talk, matching folders and stuff):

computer boot

And this is the contents of my file Homestead.yaml

---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox

authorize: C:\Users\Khalid\.ssh\id_rsa.pub

keys:
    - C:\Users\Khalid\.ssh\id_rsa

folders:
    - map: D:\work
      to: /home/vagrant/Code

sites:
    - map: homestead.app
      to: /home/vagrant/Code/Laravel/public

databases:
    - homestead

variables:
    - key: APP_ENV
      value: local

# blackfire:
#     - id: foo
#       token: bar
#       client-id: foo
#       client-token: bar

# ports:
#     - send: 93000
#       to: 9300
#     - send: 7777
#       to: 777
#       protocol: udp

Did anyone help, thanks

EDIT: full output vagrant up --debugcan be found here

+4
3

sstarlight . . 8 , .

!

authorize: C:/Users/Khalid/.ssh/id_rsa.pub

keys:
    - C:/Users/Khalid/.ssh/id_rsa

folders:
    - map: D:/work
      to: /home/vagrant/Code

sites:
    - map: homestead.app
      to: /home/vagrant/Code/Laravel/public

, , , --provision.

+6

 D:\work to D:/work/
0

keys authorize vagrant up --provision, homestead

0

Source: https://habr.com/ru/post/1611510/


All Articles