Skip to content

Commit 614e40c

Browse files
authored
add: postgres version requirement (coder#4611)
1 parent d1c5374 commit 614e40c

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Once installed, you can start a production deployment<sup>1</sup> with a single
6060
# Automatically sets up an external access URL on *.try.coder.app
6161
coder server
6262

63-
# Requires a PostgreSQL instance and external access URL
63+
# Requires a PostgreSQL instance (version 13 or higher) and external access URL
6464
coder server --postgres-url <url> --access-url <url>
6565
```
6666

@@ -95,7 +95,7 @@ Join our community on [Discord](https://coder.com/chat?utm_source=github.com/cod
9595

9696
## Contributing
9797

98-
If you're using Coder in your organization, please try to add your company name to the [ADOPTERS.md](./ADOPTERS.md). It really helps the project to gain momentum and credibility. It's a small contribution back to the project with a big impact.
98+
If you're using Coder in your organization, please try to add your company name to the [ADOPTERS.md](./ADOPTERS.md). It really helps the project to gain momentum and credibility. It's a small contribution back to the project with a big impact.
9999

100100
Read the [contributing docs](https://coder.com/docs/coder-oss/latest/CONTRIBUTING).
101101

docs/admin/configure.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ Coder uses a PostgreSQL database to store users, workspace metadata, and other d
2929
Use `CODER_PG_CONNECTION_URL` to set the database that Coder connects to. If unset, PostgreSQL binaries will be
3030
downloaded from Maven (https://repo1.maven.org/maven2) and store all data in the config root.
3131

32+
> Postgres 13 is the minimum supported version.
33+
3234
## System packages
3335

3436
If you've installed Coder via a [system package](../install/packages.md) Coder, you can

docs/install/binary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Coder publishes self-contained .zip and .tar.gz archives in [GitHub releases](ht
1717
# Automatically sets up an external access URL on *.try.coder.app
1818
coder server
1919

20-
# Requires a PostgreSQL instance and external access URL
20+
# Requires a PostgreSQL instance (version 13 or higher) and external access URL
2121
coder server --postgres-url <url> --access-url <url>
2222
```
2323

docs/install/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Learn more about Coder's [configuration options](../admin/configure.md).
3030

3131
## Run Coder with access URL and external PostgreSQL (recommended)
3232

33-
For production deployments, we recommend using an external PostgreSQL database.
34-
Set `ACCESS_URL` to the external URL that users and workspaces will use to
35-
connect to Coder.
33+
For production deployments, we recommend using an external PostgreSQL database
34+
(version 13 or higher). Set `ACCESS_URL` to the external URL that users and
35+
workspaces will use to connect to Coder.
3636

3737
```sh
3838
docker run --rm -it \

0 commit comments

Comments
 (0)