Closed mattheuspirovani closed 7 years ago
Hello, thanks for sharing! Just to clarify, this is Vagrant 1.9.7, on Windows and it refers on getting the examples from Chapter 11 running, right? It looks the same with issue #34.
@lookfwd Yes, Vagrant 1.9.7 on Windows. I was setting up the environment...
Thanks for the reply.
Recreated my env using Vagrant 1.9.2 and now everything is fine.
I was facing the following issue:
Changed in the Vagrantfile, the lines 43 & 168, respectively:
from:
spark.vm.synced_folder ".", "/root/book"
to:spark.vm.synced_folder ".", "/vagrant", disabled: true
from:
dev.vm.synced_folder ".", "/root/book"
to:dev.vm.synced_folder ".", "/vagrant", disabled: true
So, works smoothly...
BTW, i'm a vagrant/docker newbie and cant guarantee that's the right solution. Hope that a expert can explain if i made a mistake.