You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/web-application/how-to/deployment.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: "Deployment & Production"
3
3
description: "Deploy html2rss-web to production with Docker. Learn best practices for hosting public instances with security, monitoring, and reliability."
4
4
---
5
5
6
-
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 [Docker Compose Quick Start](/web-application/getting-started/#docker-compose-quick-start) provides a solid foundation for both development and production use.
6
+
html2rss-web is published on Docker Hub as [`gilcreator/html2rss-web`](https://hub.docker.com/r/gilcreator/html2rss-web), making it easy to deploy with Docker. The [`docker-compose.yml`](https://github.com/html2rss/html2rss-web/blob/master/docker-compose.yml) from our [Docker Compose Quick Start](/web-application/getting-started/#docker-compose-quick-start) provides a solid foundation for both development and production use.
7
7
8
8
## Quick Start
9
9
@@ -54,7 +54,7 @@ services:
54
54
- ./Caddyfile:/etc/caddy/Caddyfile
55
55
- caddy_data:/data
56
56
html2rss:
57
-
image: html2rss/html2rss-web:latest
57
+
image: gilcreator/html2rss-web
58
58
environment:
59
59
- BASE_URL=https://yourdomain.com
60
60
@@ -91,7 +91,7 @@ services:
91
91
volumes:
92
92
- /var/run/docker.sock:/var/run/docker.sock:ro
93
93
html2rss:
94
-
image: html2rss/html2rss-web:latest
94
+
image: gilcreator/html2rss-web
95
95
environment:
96
96
- BASE_URL=https://yourdomain.com
97
97
labels:
@@ -134,7 +134,7 @@ services:
134
134
```yaml
135
135
services:
136
136
html2rss:
137
-
image: html2rss/html2rss-web:latest
137
+
image: gilcreator/html2rss-web
138
138
deploy:
139
139
resources:
140
140
limits:
@@ -152,7 +152,7 @@ For production, update your environment variables:
0 commit comments