Skip to content

Commit

Permalink
Post-migration renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
artemgavrilov committed Oct 11, 2024
1 parent 38f6e5c commit 95e091d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-push-tde-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/docker-test-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions documentation/docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 95e091d

Please sign in to comment.