diff --git a/.github/workflows/docker-push-tde-image.yaml b/.github/workflows/docker-push-tde-image.yaml index 5183ad4e..ffe95b3f 100644 --- a/.github/workflows/docker-push-tde-image.yaml +++ b/.github/workflows/docker-push-tde-image.yaml @@ -21,5 +21,5 @@ jobs: - name: Build and push Docker image run: | - docker build -t perconalab/pg_tde:${{ github.sha }} -t perconalab/pg_tde:latest . -f docker/Dockerfile - docker push -a perconalab/pg_tde + docker build -t percona/pg_tde:${{ github.sha }} -t percona/pg_tde:latest . -f docker/Dockerfile + docker push -a percona/pg_tde diff --git a/.github/workflows/docker-test-image.yaml b/.github/workflows/docker-test-image.yaml index 41c6ca61..5a8fef56 100644 --- a/.github/workflows/docker-test-image.yaml +++ b/.github/workflows/docker-test-image.yaml @@ -12,7 +12,7 @@ jobs: - name: Build Docker image run: | - docker build -t perconalab/pg_tde:${{ github.sha }} -t pg_tde-test . -f docker/Dockerfile + docker build -t percona/pg_tde:${{ github.sha }} -t pg_tde-test . -f docker/Dockerfile - name: Run and test Docker image run: | diff --git a/README.md b/README.md index 79c79686..bd58b7dd 100644 --- a/README.md +++ b/README.md @@ -148,9 +148,9 @@ sudo dpkg -i pgtde-pgdg16.deb ## Run in Docker -You can find docker images built from the current main branch on [Docker Hub](https://hub.docker.com/r/perconalab/pg_tde). Images build on top of [postgres:16](https://hub.docker.com/_/postgres) official image. To run it: +You can find docker images built from the current main branch on [Docker Hub](https://hub.docker.com/r/percona/pg_tde). Images build on top of [postgres:16](https://hub.docker.com/_/postgres) official image. To run it: ``` -docker run --name pg-tde -e POSTGRES_PASSWORD=mysecretpassword -d perconalab/pg_tde +docker run --name pg-tde -e POSTGRES_PASSWORD=mysecretpassword -d percona/pg_tde ``` It builds and adds `pg_tde` extension to Postgres 16. Relevant `postgresql.conf` and `tde_conf.json` are created in `/etc/postgresql/` inside the container. This dir is exposed as volume. diff --git a/documentation/docs/install.md b/documentation/docs/install.md index 4f8302f8..d0c361da 100644 --- a/documentation/docs/install.md +++ b/documentation/docs/install.md @@ -62,12 +62,12 @@ Install `pg_tde` using one of available installation methods: === "Run in Docker" - You can find Docker images built from the current main branch on [Docker Hub](https://hub.docker.com/r/perconalab/pg_tde). Images are built on top of [postgres:16](https://hub.docker.com/_/postgres) official image. + You can find Docker images built from the current main branch on [Docker Hub](https://hub.docker.com/r/percona/pg_tde). Images are built on top of [postgres:16](https://hub.docker.com/_/postgres) official image. To run `pg_tde` in Docker, use the following command: ``` - docker run --name pg-tde -e POSTGRES_PASSWORD=mysecretpassword -d perconalab/pg_tde + docker run --name pg-tde -e POSTGRES_PASSWORD=mysecretpassword -d percona/pg_tde ``` It builds and adds `pg_tde` extension to PostgreSQL 16. The `postgresql.conf` contains the required modifications. The `pg_tde` extension is added to `template1` so that all new databases automatically have the `pg_tde` extension loaded.