How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "mbr/postgres"
config.vm.box_version = "1.1.0"
end
vagrant init mbr/postgres \
--box-version 1.1.0
vagrant up
This version was created over 6 years ago.
Contains a minimal installation of PostgreSQL for development, base on debian/jessie64
.
See https://github.com/mbr/vagrant-boxes for sources. The box is available on Atlas as mbr/postgres
.
vagrant
vagrant
vagrant
The vagrant
is not a superuser, but can create databases, users and roles, as well as login. The vagrant
database is empty.
By default, the PostgreSQL port is only exposed to the host, via 127.0.0.1:5432
. To make it available on all interfaces, add
config.vm.network "forwarded_port", guest: 5432, host: 5432, host_ip: "127.0.0.1"
to your Vagrantfile.