Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

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