Skip to content

Commit 5638092

Browse files
committed
steps
1 parent 6491a26 commit 5638092

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

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

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,33 @@ 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+
68
html2rss-web is published on Docker Hub, making it easy to deploy with Docker. The [`docker-compose.yml`](https://github.com/html2rss/html2rss-web/blob/master/docker-compose.yml) from our [Installation Guide](/web-application/getting-started) provides a solid foundation for both development and production use.
79

810
## Quick Start
911

10-
1. Create a directory for your instance:
12+
<Steps>
13+
14+
1. **Create a directory** for your instance:
1115
```bash
1216
mkdir html2rss-web && cd html2rss-web
1317
```
14-
2. Download the configuration:
18+
19+
2. **Download the configuration** files:
1520
```bash
1621
curl -O https://raw.githubusercontent.com/html2rss/html2rss-web/master/docker-compose.yml
1722
curl -O https://raw.githubusercontent.com/html2rss/html2rss-web/master/config/feeds.yml
1823
```
19-
3. Start the instance:
24+
25+
3. **Start the instance**:
2026
```bash
2127
docker compose up -d
2228
```
23-
4. Open [http://localhost:3000](http://localhost:3000) to verify it’s running.
29+
30+
4. **Verify it's running** by opening [http://localhost:3000](http://localhost:3000) in your browser.
31+
32+
</Steps>
2433

2534
> 📖 Need Docker? Follow the [Docker installation guide](https://docs.docker.com/get-docker/) and [Docker Compose install](https://docs.docker.com/compose/install/).
2635

0 commit comments

Comments
 (0)