mirror of
https://github.com/coder/coder.git
synced 2025-07-18 14:17:22 +00:00
add: postgres version requirement (#4611)
This commit is contained in:
@ -60,7 +60,7 @@ Once installed, you can start a production deployment<sup>1</sup> with a single
|
|||||||
# Automatically sets up an external access URL on *.try.coder.app
|
# Automatically sets up an external access URL on *.try.coder.app
|
||||||
coder server
|
coder server
|
||||||
|
|
||||||
# Requires a PostgreSQL instance and external access URL
|
# Requires a PostgreSQL instance (version 13 or higher) and external access URL
|
||||||
coder server --postgres-url <url> --access-url <url>
|
coder server --postgres-url <url> --access-url <url>
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -95,7 +95,7 @@ Join our community on [Discord](https://coder.com/chat?utm_source=github.com/cod
|
|||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
Read the [contributing docs](https://coder.com/docs/coder-oss/latest/CONTRIBUTING).
|
Read the [contributing docs](https://coder.com/docs/coder-oss/latest/CONTRIBUTING).
|
||||||
|
|
||||||
|
@ -29,6 +29,8 @@ Coder uses a PostgreSQL database to store users, workspace metadata, and other d
|
|||||||
Use `CODER_PG_CONNECTION_URL` to set the database that Coder connects to. If unset, PostgreSQL binaries will be
|
Use `CODER_PG_CONNECTION_URL` to set the database that Coder connects to. If unset, PostgreSQL binaries will be
|
||||||
downloaded from Maven (https://repo1.maven.org/maven2) and store all data in the config root.
|
downloaded from Maven (https://repo1.maven.org/maven2) and store all data in the config root.
|
||||||
|
|
||||||
|
> Postgres 13 is the minimum supported version.
|
||||||
|
|
||||||
## System packages
|
## System packages
|
||||||
|
|
||||||
If you've installed Coder via a [system package](../install/packages.md) Coder, you can
|
If you've installed Coder via a [system package](../install/packages.md) Coder, you can
|
||||||
|
@ -17,7 +17,7 @@ Coder publishes self-contained .zip and .tar.gz archives in [GitHub releases](ht
|
|||||||
# Automatically sets up an external access URL on *.try.coder.app
|
# Automatically sets up an external access URL on *.try.coder.app
|
||||||
coder server
|
coder server
|
||||||
|
|
||||||
# Requires a PostgreSQL instance and external access URL
|
# Requires a PostgreSQL instance (version 13 or higher) and external access URL
|
||||||
coder server --postgres-url <url> --access-url <url>
|
coder server --postgres-url <url> --access-url <url>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -30,9 +30,9 @@ Learn more about Coder's [configuration options](../admin/configure.md).
|
|||||||
|
|
||||||
## Run Coder with access URL and external PostgreSQL (recommended)
|
## Run Coder with access URL and external PostgreSQL (recommended)
|
||||||
|
|
||||||
For production deployments, we recommend using an external PostgreSQL database.
|
For production deployments, we recommend using an external PostgreSQL database
|
||||||
Set `ACCESS_URL` to the external URL that users and workspaces will use to
|
(version 13 or higher). Set `ACCESS_URL` to the external URL that users and
|
||||||
connect to Coder.
|
workspaces will use to connect to Coder.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker run --rm -it \
|
docker run --rm -it \
|
||||||
|
Reference in New Issue
Block a user