Skip to content

Commit

Permalink
update iamge ref in readmes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHend committed Jul 31, 2023
1 parent 500cce3 commit 94cf9cc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
docker run -d --name pgmq-pg -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io/tembo/pgmq-pg:latest
2 changes: 1 addition & 1 deletion core/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion tembo-pgmq-python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tembo-pgmq-python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 94cf9cc

Please sign in to comment.