mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-08 20:25:19 +02:00
docs: update installation instructions across multiple languages to include new Docker command and manual update process
This commit is contained in:
parent
35025bf0c5
commit
71a995da23
5 changed files with 65 additions and 21 deletions
21
README.es.md
21
README.es.md
|
|
@ -81,15 +81,26 @@ https://github.com/user-attachments/assets/a0a16566-6967-4374-ac51-9b3e07fbecd7
|
||||||
|
|
||||||
Ejecuta SurfSense en tu propia infraestructura para control total de datos y privacidad.
|
Ejecuta SurfSense en tu propia infraestructura para control total de datos y privacidad.
|
||||||
|
|
||||||
**Inicio Rápido (Docker en un solo comando):**
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -d -p 3000:3000 -p 8000:8000 -p 5133:5133 -v surfsense-data:/data --name surfsense --restart unless-stopped ghcr.io/modsetter/surfsense:latest
|
curl -fsSL https://raw.githubusercontent.com/MODSetter/SurfSense/main/docker/scripts/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
Después de iniciar, abre [http://localhost:3000](http://localhost:3000) en tu navegador.
|
Para Docker Compose y otras opciones de despliegue, consulta la [documentación de instalación Docker](https://www.surfsense.com/docs/docker-installation).
|
||||||
|
|
||||||
Para Docker Compose, instalación manual y otras opciones de despliegue, consulta la [documentación](https://www.surfsense.com/docs/).
|
**Actualización (recomendada — Watchtower):**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -d --name watchtower -v /var/run/docker.sock:/var/run/docker.sock nickfedor/watchtower --label-enable --interval 86400
|
||||||
|
```
|
||||||
|
|
||||||
|
**Actualización (manual):**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd surfsense # o SurfSense/docker si usaste la Opción 2
|
||||||
|
docker compose pull && docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
Para instalación manual y otras opciones de despliegue, consulta la [documentación](https://www.surfsense.com/docs/).
|
||||||
|
|
||||||
### Cómo Colaborar en Tiempo Real (Beta)
|
### Cómo Colaborar en Tiempo Real (Beta)
|
||||||
|
|
||||||
|
|
|
||||||
21
README.hi.md
21
README.hi.md
|
|
@ -81,15 +81,26 @@ https://github.com/user-attachments/assets/a0a16566-6967-4374-ac51-9b3e07fbecd7
|
||||||
|
|
||||||
पूर्ण डेटा नियंत्रण और गोपनीयता के लिए SurfSense को अपने स्वयं के बुनियादी ढांचे पर चलाएं।
|
पूर्ण डेटा नियंत्रण और गोपनीयता के लिए SurfSense को अपने स्वयं के बुनियादी ढांचे पर चलाएं।
|
||||||
|
|
||||||
**त्वरित शुरुआत (Docker एक कमांड में):**
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -d -p 3000:3000 -p 8000:8000 -p 5133:5133 -v surfsense-data:/data --name surfsense --restart unless-stopped ghcr.io/modsetter/surfsense:latest
|
curl -fsSL https://raw.githubusercontent.com/MODSetter/SurfSense/main/docker/scripts/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
शुरू करने के बाद, अपने ब्राउज़र में [http://localhost:3000](http://localhost:3000) खोलें।
|
Docker Compose और अन्य डिप्लॉयमेंट विकल्पों के लिए, [Docker इंस्टॉलेशन डॉक्स](https://www.surfsense.com/docs/docker-installation) देखें।
|
||||||
|
|
||||||
Docker Compose, मैनुअल इंस्टॉलेशन और अन्य डिप्लॉयमेंट विकल्पों के लिए, [डॉक्स](https://www.surfsense.com/docs/) देखें।
|
**अपडेट (अनुशंसित — Watchtower):**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -d --name watchtower -v /var/run/docker.sock:/var/run/docker.sock nickfedor/watchtower --label-enable --interval 86400
|
||||||
|
```
|
||||||
|
|
||||||
|
**अपडेट (मैनुअल):**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd surfsense # या SurfSense/docker यदि आपने Option 2 का उपयोग किया
|
||||||
|
docker compose pull && docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
मैनुअल इंस्टॉलेशन और अन्य डिप्लॉयमेंट विकल्पों के लिए, [डॉक्स](https://www.surfsense.com/docs/) देखें।
|
||||||
|
|
||||||
### रीयल-टाइम सहयोग कैसे करें (बीटा)
|
### रीयल-टाइम सहयोग कैसे करें (बीटा)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@ For Docker Compose and other deployment options, see the [Docker Installation do
|
||||||
**Update (recommended — Watchtower):**
|
**Update (recommended — Watchtower):**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock nickfedor/watchtower --run-once --label-enable
|
docker run -d --name watchtower -v /var/run/docker.sock:/var/run/docker.sock nickfedor/watchtower --label-enable --interval 86400
|
||||||
```
|
```
|
||||||
|
|
||||||
**Update (manual):**
|
**Update (manual):**
|
||||||
|
|
|
||||||
|
|
@ -81,15 +81,26 @@ https://github.com/user-attachments/assets/a0a16566-6967-4374-ac51-9b3e07fbecd7
|
||||||
|
|
||||||
Execute o SurfSense na sua própria infraestrutura para controle total de dados e privacidade.
|
Execute o SurfSense na sua própria infraestrutura para controle total de dados e privacidade.
|
||||||
|
|
||||||
**Início Rápido (Docker em um único comando):**
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -d -p 3000:3000 -p 8000:8000 -p 5133:5133 -v surfsense-data:/data --name surfsense --restart unless-stopped ghcr.io/modsetter/surfsense:latest
|
curl -fsSL https://raw.githubusercontent.com/MODSetter/SurfSense/main/docker/scripts/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
Após iniciar, abra [http://localhost:3000](http://localhost:3000) no seu navegador.
|
Para Docker Compose e outras opções de implantação, consulte a [documentação de instalação Docker](https://www.surfsense.com/docs/docker-installation).
|
||||||
|
|
||||||
Para Docker Compose, instalação manual e outras opções de implantação, consulte a [documentação](https://www.surfsense.com/docs/).
|
**Atualização (recomendada — Watchtower):**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -d --name watchtower -v /var/run/docker.sock:/var/run/docker.sock nickfedor/watchtower --label-enable --interval 86400
|
||||||
|
```
|
||||||
|
|
||||||
|
**Atualização (manual):**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd surfsense # ou SurfSense/docker se você usou a Opção 2
|
||||||
|
docker compose pull && docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
Para instalação manual e outras opções de implantação, consulte a [documentação](https://www.surfsense.com/docs/).
|
||||||
|
|
||||||
### Como Colaborar em Tempo Real (Beta)
|
### Como Colaborar em Tempo Real (Beta)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -81,15 +81,26 @@ https://github.com/user-attachments/assets/a0a16566-6967-4374-ac51-9b3e07fbecd7
|
||||||
|
|
||||||
在您自己的基础设施上运行 SurfSense,实现完全的数据控制和隐私保护。
|
在您自己的基础设施上运行 SurfSense,实现完全的数据控制和隐私保护。
|
||||||
|
|
||||||
**快速开始(Docker 一行命令):**
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -d -p 3000:3000 -p 8000:8000 -p 5133:5133 -v surfsense-data:/data --name surfsense --restart unless-stopped ghcr.io/modsetter/surfsense:latest
|
curl -fsSL https://raw.githubusercontent.com/MODSetter/SurfSense/main/docker/scripts/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
启动后,在浏览器中打开 [http://localhost:3000](http://localhost:3000)。
|
如需 Docker Compose 及其他部署方式,请查看 [Docker 安装文档](https://www.surfsense.com/docs/docker-installation)。
|
||||||
|
|
||||||
如需 Docker Compose、手动安装及其他部署方式,请查看[文档](https://www.surfsense.com/docs/)。
|
**更新(推荐 — Watchtower):**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -d --name watchtower -v /var/run/docker.sock:/var/run/docker.sock nickfedor/watchtower --label-enable --interval 86400
|
||||||
|
```
|
||||||
|
|
||||||
|
**更新(手动):**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd surfsense # 若使用了方式二,则为 SurfSense/docker
|
||||||
|
docker compose pull && docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
如需手动安装及其他部署方式,请查看[文档](https://www.surfsense.com/docs/)。
|
||||||
|
|
||||||
### 如何实时协作(Beta)
|
### 如何实时协作(Beta)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue