# postgres-test **Repository Path**: mirrors_cockroachdb/postgres-test ## Basic Information - **Project Name**: postgres-test - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2023-08-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Postgres Test This is the Docker image used to run the CockroachDB [acceptance tests](https://github.com/cockroachdb/cockroach/tree/master/acceptance), which include verification that simple clients in various languages can connect to and interact with CockroachDB using the Postgres wire protocol -- thus it includes the tools required to run php, node, java, etc. [Docker Hub](https://hub.docker.com/r/cockroachdb/postgres-test/) automatically builds new images from git tags, using the git tag as the Docker tag. By convention, tags are of the form YYYYMMDD-HHMM. Iterating on this image locally [requires a local Docker registry](http://stackoverflow.com/a/35166297). - Run `docker run -d -p 5000:5000 --restart=always --name registry registry:2` - In this repo, run `docker build -t cockroachdb/postgres-test:foo .` and `docker push cockroachdb/postgres-test:foo` - In `cockroach/pkg/acceptance/util_docker.go`, edit the constant `postgresTestImage` to point to `cockroachdb/postgres-test:foo` instead of `docker.io/cockroachdb/cockroach:$DATE`.