diff --git a/.github/workflows/validate-pr.yaml b/.github/workflows/validate-pr.yaml index ab4261a1..dc045aea 100644 --- a/.github/workflows/validate-pr.yaml +++ b/.github/workflows/validate-pr.yaml @@ -16,7 +16,7 @@ jobs: podman machine init podman machine start - name: Run Postgres - run: podman run -p 5432:5432 --name some-postgres -e POSTGRES_PASSWORD=postgres -d postgres + run: podman run -p 5432:5432 --name some-postgres -e POSTGRES_PASSWORD=postgres -d postgres:14 - name: Setup Golang 1.19 uses: actions/setup-go@v2 with: diff --git a/README.md b/README.md index 759a1792..a4e557c4 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ Please note that these are general steps, and the exact steps may vary based on First, you need to have a PostgreSQL instance running to host local data. You can start one with your favourite container engine (docker or podman) ```bash - podman run -p 5432:5432 --name some-postgres -e POSTGRES_PASSWORD=postgres -d postgres + podman run -p 5432:5432 --name some-postgres -e POSTGRES_PASSWORD=postgres -d postgres:14 ``` After that, you need to build the backend binaries. To do that you can follow the backend [instructions](./backend/README.md).