From deb6db3749bebe46baccdc7860d8ffb48706a1fe Mon Sep 17 00:00:00 2001 From: Ashwini Oruganti Date: Mon, 15 May 2017 11:51:36 -0700 Subject: [PATCH] Enable SSH on the test server for our CI Signed-off-by: Ashwini Oruganti --- buildscripts/dbtests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildscripts/dbtests.sh b/buildscripts/dbtests.sh index adf49734a..928d56021 100755 --- a/buildscripts/dbtests.sh +++ b/buildscripts/dbtests.sh @@ -15,7 +15,7 @@ case ${db} in ;; postgresql*) db="postgresql" - dbContainerOpts="--name postgresql_tests postgresql" + dbContainerOpts="--name postgresql_tests postgresql -l" DBURL="postgres://server@postgresql_tests:5432/notaryserver?sslmode=verify-ca&sslrootcert=/go/src/github.com/docker/notary/fixtures/database/ca.pem&sslcert=/go/src/github.com/docker/notary/fixtures/database/notary-server.pem&sslkey=/go/src/github.com/docker/notary/fixtures/database/notary-server-key.pem" ;; *)