docs(readme): add self-hosting section to README (#178)

This commit is contained in:
Corentin Thomasset
2025-04-02 20:34:52 +02:00
committed by GitHub
parent faca409604
commit 9afca3fd84
2 changed files with 12 additions and 1 deletions

View File

@@ -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.

View File

@@ -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
```