Skip to content

Commit 07af6fa

Browse files
committed
docs: align naming
1 parent 56e9b18 commit 07af6fa

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

examples/deployment/docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
services:
2-
html2rss:
2+
html2rss-web:
33
image: html2rss/web:latest
44
env_file: .env
55

66
caddy:
77
image: caddy:2-alpine
88
depends_on:
9-
- html2rss
9+
- html2rss-web
1010
command:
1111
- caddy
1212
- reverse-proxy
1313
- --from
1414
- ${CADDY_HOST}
1515
- --to
16-
- html2rss:3000
16+
- html2rss-web:4000
1717
ports:
1818
- "80:80"
1919
- "443:443"
@@ -23,13 +23,13 @@ services:
2323
watchtower:
2424
image: containrrr/watchtower
2525
depends_on:
26-
- html2rss
26+
- html2rss-web
2727
- caddy
2828
command:
2929
- --cleanup
3030
- --interval
3131
- "300"
32-
- html2rss
32+
- html2rss-web
3333
- caddy
3434
volumes:
3535
- /var/run/docker.sock:/var/run/docker.sock:ro

src/content/docs/web-application/reference/env-variables.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ description: "Configuration reference for html2rss-web environment variables."
1212
| `BUILD_TAG` | required in production |
1313
| `GIT_SHA` | required in production |
1414
| `SENTRY_DSN` | optional; enables Sentry errors/logs when set |
15+
| `BROWSERLESS_IO_WEBSOCKET_URL` | optional; Browserless websocket endpoint for `browserless` strategy |
16+
| `BROWSERLESS_IO_API_TOKEN` | optional for local default endpoint; required when `BROWSERLESS_IO_WEBSOCKET_URL` points to a custom endpoint |
1517
| `AUTO_SOURCE_ENABLED` | `true` by default in development/test, `false` otherwise |
1618
| `ASYNC_FEED_REFRESH_ENABLED` | optional boolean; default `false` |
1719
| `ASYNC_FEED_REFRESH_STALE_FACTOR` | optional integer `>= 1`; default `3` |

0 commit comments

Comments
 (0)