Skip to content

Commit 9682db5

Browse files
authored
chore(docs): reorganize installation docs (#11465)
1 parent dfe8efc commit 9682db5

22 files changed

+384
-356
lines changed

docs/images/install/ec2.svg

+8
Loading

docs/images/install/eks.svg

+1
Loading

docs/images/install/fly.io.svg

+1
Loading

docs/images/install/gce.svg

+14
Loading

docs/images/install/heroku.svg

+2
Loading

docs/images/install/railway.svg

+1
Loading

docs/images/install/render.png

1.29 KB
Loading

docs/install/1-click.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Coder can be installed on many cloud providers using our
2+
[one-click install packages](https://github.com/coder/packages)
3+
4+
| Logo | Platform Name | Status | Documentation | Deploy |
5+
| -------------------------------------------------------- | --------------------- | ----------- | ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
6+
| ![AWS EC2 Logo](../images/install/ec2.svg) | AWS EC2 | Live ✅ | [Guide: AWS](https://coder.com/docs/v2/latest/platforms/aws) | [Deploy from AWS Marketplace](https://aws.amazon.com/marketplace/pp/prodview-5gxjyur2vc7rg?sr=0-2&ref_=beagle&applicationId=AWSMPContessa) |
7+
| ![AWS EKS Logo](../images/install/eks.svg) | AWS EKS | In progress | [Docs: Coder on Kubernetes](https://coder.com/docs/v2/latest/install/kubernetes) | [Deploy from AWS Marketplace](https://example.com) |
8+
| ![Google Compute Engine logo](../images/install/gce.svg) | Google Compute Engine | Live ✅ | [Guide: Google Compute Engine](https://coder.com/docs/v2/latest/platforms/gcp) | [Deploy from GCP Marketplace](https://console.cloud.google.com/marketplace/product/coder-enterprise-market-public/coder-v2) |
9+
| ![Fly.io Logo](../images/install/fly.io.svg) | Fly.io | Live ✅ | [Blog: Run Coder on Fly.io](https://coder.com/blog/remote-developer-environments-on-fly-io) | [Deploy Coder on FLy.io](https://coder.com/blog/remote-developer-environments-on-fly-io) |
10+
| ![Railway.app Logo](../images/install/railway.svg) | Railway.app | Live ✅ | [Blog: Run Coder on Railway.app](https://coder.com/blog/deploy-coder-on-railway-app) | [![Deploy Coder on Railway](https://railway.app/button.svg)](https://railway.app/template/coder?referralCode=tfH8Uw) |
11+
| ![Heroku Logo](../images/install/heroku.svg) | Heroku | Live ✅ | [Docs: Deploy Coder on Heroku](./heroku/README.md) | [![Deploy Coder on Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/coder/packages) |
12+
| ![Render.com Logo](../images/install/render.png) | Render | Live ✅ | [Docs: Deploy Coder on Render](./render/README.md) | [![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy?repo=https://github.com/coder/packages) |

docs/install/binary.md

-40
This file was deleted.

docs/install/database.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Coder configuration is defined via
2424
[environment variables](../admin/configure.md). The database client requires the
2525
connection string provided via the `CODER_PG_CONNECTION_URL` variable.
2626

27-
```console
27+
```shell
2828
export CODER_PG_CONNECTION_URL="postgres://coder:secret42@localhost/coder?sslmode=disable"
2929
```
3030

@@ -53,7 +53,7 @@ Once the schema is created, you can list all schemas with `\dn`:
5353

5454
In this case the database client requires the modified connection string:
5555

56-
```console
56+
```shell
5757
export CODER_PG_CONNECTION_URL="postgres://coder:secret42@localhost/coder?sslmode=disable&search_path=myschema"
5858
```
5959

@@ -85,7 +85,7 @@ Please make sure that the schema selected in the connection string
8585
`...&search_path=myschema` exists and the role has granted permissions to access
8686
it. The schema should be present on this listing:
8787

88-
```console
88+
```shell
8989
psql -U coder -c '\dn'
9090
```
9191

0 commit comments

Comments
 (0)