a0b2c86645
- Start using Docker to test in TravisCI - Support for PG10 and PG11 and remove support for old versions
5 lines
227 B
Bash
Executable File
5 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker run -e PGHOST=localhost -e PGPORT=5432 -v `pwd`:/srv --entrypoint="/bin/bash" ${1} /srv/scripts/ci/run_tests_docker.sh && \
|
|
docker ps --filter status=dead --filter status=exited -aq | xargs docker rm -v
|