Skip to content

Commit 7fb69f0

Browse files
authored
Update deployment docs to reference official docker image (#969)
1 parent 9383ddb commit 7fb69f0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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-
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.
77

88
## Quick Start
99

@@ -54,7 +54,7 @@ services:
5454
- ./Caddyfile:/etc/caddy/Caddyfile
5555
- caddy_data:/data
5656
html2rss:
57-
image: html2rss/html2rss-web:latest
57+
image: gilcreator/html2rss-web
5858
environment:
5959
- BASE_URL=https://yourdomain.com
6060

@@ -91,7 +91,7 @@ services:
9191
volumes:
9292
- /var/run/docker.sock:/var/run/docker.sock:ro
9393
html2rss:
94-
image: html2rss/html2rss-web:latest
94+
image: gilcreator/html2rss-web
9595
environment:
9696
- BASE_URL=https://yourdomain.com
9797
labels:
@@ -134,7 +134,7 @@ services:
134134
```yaml
135135
services:
136136
html2rss:
137-
image: html2rss/html2rss-web:latest
137+
image: gilcreator/html2rss-web
138138
deploy:
139139
resources:
140140
limits:
@@ -152,7 +152,7 @@ For production, update your environment variables:
152152
```yaml
153153
services:
154154
html2rss:
155-
image: html2rss/html2rss-web:latest
155+
image: gilcreator/html2rss-web
156156
environment:
157157
RACK_ENV: production
158158
LOG_LEVEL: warn

0 commit comments

Comments
 (0)