25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

13 satır
309 B

  1. #!/usr/bin/env bash
  2. # This script builds the Docker image to run the PostgreSQL tests, and then runs
  3. # the tests.
  4. set -e
  5. # Build, and tag
  6. docker build docker/ -f docker/Dockerfile-pgtests -t synapsepgtests
  7. # Run, mounting the current directory into /src
  8. docker run --rm -it -v $(pwd)\:/src synapsepgtests