Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

13 rindas
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