Skip to content

Commit af0f3aa

Browse files
authored
docs: deduplicate deployment guide intro (#985)
1 parent aaea481 commit af0f3aa

File tree

1 file changed

+2
-34
lines changed

1 file changed

+2
-34
lines changed

src/content/docs/web-application/how-to/deployment.mdx

Lines changed: 2 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -3,43 +3,11 @@ title: "Deployment & Production"
33
description: "Deploy html2rss-web to production with Docker. Learn best practices for hosting public instances with security, monitoring, and reliability."
44
---
55

6-
import { Steps } from "@astrojs/starlight/components";
7-
86
html2rss-web ships on Docker Hub, so you can launch it wherever Docker runs. Start with the official [`docker-compose.yml`](https://github.com/html2rss/html2rss-web/blob/master/docker-compose.yml) from the [Installation Guide](/web-application/getting-started) as your baseline.
97

10-
## Launch Locally
11-
12-
<Steps>
13-
14-
1. **Create a project directory**
15-
16-
```bash
17-
mkdir html2rss-web && cd html2rss-web
18-
```
19-
20-
2. **Fetch the reference compose file**
21-
22-
```bash
23-
curl -O https://raw.githubusercontent.com/html2rss/html2rss-web/master/docker-compose.yml
24-
```
25-
26-
3. **Start the stack**
27-
28-
```bash
29-
docker compose up -d
30-
```
31-
32-
4. **Confirm the service**
33-
34-
```bash
35-
docker compose ps
36-
```
37-
38-
Open [http://localhost:3000](http://localhost:3000) to verify the UI.
39-
40-
</Steps>
8+
If you have not yet created a local instance, complete the [Getting Started guide](/web-application/getting-started) first. It walks through the one-time project directory setup, downloading the reference compose file, and confirming the application locally—steps we will build upon here.
419

42-
> 📖 New to Docker? Follow the [Docker engine](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/) installation guides first.
10+
Already running html2rss-web on your workstation? Great! The sections below focus on what changes when you take that setup to production.
4311

4412
## Prepare for Production
4513

0 commit comments

Comments
 (0)