From 9afca3fd8443adecce583fea6fe6135ac1a005c8 Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Wed, 2 Apr 2025 20:34:52 +0200 Subject: [PATCH] docs(readme): add self-hosting section to README (#178) --- README.md | 11 +++++++++++ .../content/docs/02-self-hosting/01-using-docker.md | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c29698..2adbd04 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,17 @@ A live demo of the platform is available at [demo.papra.app](https://demo.papra. - *Coming maybe one day:* **Mobile app**: Access and upload documents on the go. - *Coming maybe one day:* **Desktop app**: Access and upload documents from your computer. +## Self-hosting + +Papra can easily be self-hosted using Docker +For a quick start, simply run the following command: + +```bash +docker run -d --name papra -p 1221:1221 ghcr.io/papra-hq/papra:latest +``` + +Please refer to the [self-hosting documentation](https://docs.papra.app/self-hosting/using-docker) for more information and configuration options. + ## Contributing Contributions are welcome! Please refer to the [`CONTRIBUTING.md`](./CONTRIBUTING.md) file for guidelines on how to get started, report issues, and submit pull requests. diff --git a/apps/docs/src/content/docs/02-self-hosting/01-using-docker.md b/apps/docs/src/content/docs/02-self-hosting/01-using-docker.md index aad0648..000a901 100644 --- a/apps/docs/src/content/docs/02-self-hosting/01-using-docker.md +++ b/apps/docs/src/content/docs/02-self-hosting/01-using-docker.md @@ -57,5 +57,5 @@ docker pull ghcr.io/papra-hq/papra:latest-root ## Basic Usage ```bash frame="none" -docker run -d --name papra --restart unless-stopped -p 1221:1221 ghcr.io/papra-hq/papra:latest-root +docker run -d --name papra --restart unless-stopped -p 1221:1221 ghcr.io/papra-hq/papra:latest ```