25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

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