[docs] Add more links to the self hosting docs

To make them easier to find.
This commit is contained in:
Manav Rathi
2024-09-10 07:20:45 +05:30
parent 7f0e2bcb9e
commit 86e2db388e
3 changed files with 24 additions and 16 deletions

View File

@@ -123,8 +123,8 @@ documentation PRs around this too.
> [!TIP]
>
> You can find more guides and documentation around self-hosting at
> [help.ente.io/self-hosting](https://help.ente.io/self-hosting).
> For more documentation around self-hosting, see
> **[help.ente.io/self-hosting](https://help.ente.io/self-hosting)**.
## Thanks ❤️

View File

@@ -10,10 +10,14 @@ static go binary.
This document describes these approaches, and also outlines configuration.
- [Run using Docker using a pre-built Docker image](docs/docker.md)
- [Run using Docker but build an image from source](#build-and-run-using-docker)
- [Running without Docker](#run-without-docker)
- [Configuration](#configuration)
- [Run using Docker using a pre-built Docker image](docs/docker.md)
- [Run using Docker but build an image from source](#build-and-run-using-docker)
- [Running without Docker](#run-without-docker)
- [Configuration](#configuration)
If your mobile app is able to connect to your self hosted instance but is not
able to view or upload images, see
[help.ente.io/self-hosting/guides/configuring-s3](https://help.ente.io/self-hosting/guides/configuring-s3).
## Build and run using Docker
@@ -105,7 +109,6 @@ brew install pkg-config
> avoid surprises, but if you're using a newer Postgres that should work fine
> too.
On M1 macs, we additionally need to link the postgres keg.
```

View File

@@ -48,21 +48,21 @@ require you to clone the repository or build any images.
4. Create an (empty) configuration file. You can later put your custom
configuration in this if needed.
```sh
touch museum.yaml
```
```sh
touch museum.yaml
```
5. That is all. You can now start everything.
```sh
docker compose up
```
```sh
docker compose up
```
This will start a cluster containing:
* Ente's own server
* PostgresQL (DB)
* MinIO (the S3 layer)
- Ente's own server
- PostgresQL (DB)
- MinIO (the S3 layer)
For each of these, it'll use the latest published Docker image.
@@ -81,3 +81,8 @@ and run the image from **`ghcr.io/ente-io/server`**.
```sh
docker pull ghcr.io/ente-io/server
```
> [!TIP]
>
> For more documentation around self-hosting, see
> **[help.ente.io/self-hosting](https://help.ente.io/self-hosting)**.