├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── Vagrantfile └── scripts ├── first_run.sh ├── normal_run.sh └── start.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Painted-Fox/docker-postgresql/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Painted-Fox/docker-postgresql/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Painted-Fox/docker-postgresql/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Painted-Fox/docker-postgresql/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Painted-Fox/docker-postgresql/HEAD/Vagrantfile -------------------------------------------------------------------------------- /scripts/first_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Painted-Fox/docker-postgresql/HEAD/scripts/first_run.sh -------------------------------------------------------------------------------- /scripts/normal_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Painted-Fox/docker-postgresql/HEAD/scripts/normal_run.sh -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Painted-Fox/docker-postgresql/HEAD/scripts/start.sh --------------------------------------------------------------------------------