diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 87ddf775..0fc3a6ca 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,10 +2,10 @@ ## Installation -The fastest way to get started is by running the CoreDB docker image, where PGMQ comes pre-installed. +The fastest way to get started is by running the Tembo docker image, where PGMQ comes pre-installed. ```bash -docker run -d --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io/coredb/pgmq-pg:latest +docker run -d --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io/tembo/pgmq-pg:latest ``` # Development diff --git a/Makefile b/Makefile index bca902f3..535e3d4c 100644 --- a/Makefile +++ b/Makefile @@ -3,4 +3,4 @@ format: cargo +nightly clippy run.postgres: - docker run -d --name pgmq-pg -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io/coredb/pgmq-pg:latest \ No newline at end of file + docker run -d --name pgmq-pg -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io/tembo/pgmq-pg:latest \ No newline at end of file diff --git a/core/Makefile b/core/Makefile index 706d1181..e28cf4aa 100644 --- a/core/Makefile +++ b/core/Makefile @@ -12,7 +12,7 @@ update.readme: > README.md run.postgres: - docker run --rm -d --name pgmq-pg -e POSTGRES_PASSWORD=${POSTGRES_PASSWORD} -p 5432:5432 quay.io/coredb/pgmq-pg:latest + docker run --rm -d --name pgmq-pg -e POSTGRES_PASSWORD=${POSTGRES_PASSWORD} -p 5432:5432 quay.io/tembo/pgmq-pg:latest test: run.postgres sleep 2; diff --git a/tembo-pgmq-python/Makefile b/tembo-pgmq-python/Makefile index 992e0839..1b07a218 100644 --- a/tembo-pgmq-python/Makefile +++ b/tembo-pgmq-python/Makefile @@ -14,7 +14,7 @@ clear-postgres: docker rm -f pgmq-postgres || true run-pgmq-postgres: - docker run -d --name pgmq-postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io/coredb/pgmq-pg:latest || true + docker run -d --name pgmq-postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io/tembo/pgmq-pg:latest || true test: run-pgmq-postgres poetry run pytest diff --git a/tembo-pgmq-python/README.md b/tembo-pgmq-python/README.md index 119469dd..6e214a8e 100644 --- a/tembo-pgmq-python/README.md +++ b/tembo-pgmq-python/README.md @@ -17,7 +17,7 @@ Postgres running the [Tembo PGMQ extension](https://github.com/tembo-io/tembo/tr ## Start a Postgres Instance with the Tembo extension installed ```bash -docker run -d --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io/coredb/pgmq-pg:latest +docker run -d --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io/tembo/pgmq-pg:latest ``` Initialize a connection to Postgres