Skip to content

Commit

Permalink
fix: Postgres version (#182)
Browse files Browse the repository at this point in the history
Postgres version change
  • Loading branch information
jsmid1 authored Oct 6, 2023
1 parent 0816191 commit 65b52ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit 65b52ed

Please sign in to comment.