As per the PostgreSQL wiki, I cloned a vagrant file preloaded with PostgreSQL onto my hard drive.
I am now trying to use that in conjunction with a .py and .sql file that I had been writing. The Vagrant documentation suggests that I should be able to cd
straight into a folder called /vagrant
once I have done vagrant up
and vagrant ssh
but whenever I try to do that, I get the following error message:
-bash: cd: /vagrant: No such file or directory
I am assuming it is something inside my Vagrantfile
. The Vagrant documentation said this behaviour should happen by default, but I added in the extra line:
config.vm.synced_folder ".", "/vagrant"
But that did nothing.
So I want to know how I can access my /vagrant
shared/synced folder. Can you help?
The Vagrantfile from https://github.com/jackdb/pg-app-dev-vm looks a bit old and still has the version 1 syntax -
You can add the missing folder within the version 2 syntax part, so Vagrantfile like
Better would be to use version2 syntax (syntax1 is obsolete for a few years now) - the following will work
Using this you dont need to specify a
/vagrant
shared folder as you read its here by default