Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

Latest commit

 

History

History

docker

How to build/rebuild:

Rebuild and push images for all postgres versions:

./rebuild_push_images.sh

Or do it manually:

export NANCY_DOCKER_PG_VERSION=9.6

docker build \
  --build-arg "PG_SERVER_VERSION=${NANCY_DOCKER_PG_VERSION}" \
  -t "postgresmen/postgres-nancy:${NANCY_DOCKER_PG_VERSION}" .

docker login # you must be registered, go to hub.docker.com

docker push "postgresmen/postgres-nancy:${NANCY_DOCKER_PG_VERSION}"