Confused about chromium-bundled vs real-browser/browserless #20649
-
|
Hi there, Just starting with the project. I did not find any particular explanation on the differences between using the RSSHub with built-in chrome or the real-browser+browserless. Is it really just a difference in memory/disk usage? Additionally, real-browser seems to have been added very recently but is not marked as needed to be commented-out when using the built-in chrome? So is it required when using built-in chrome? Can you please explain in bit more detail which component does what and why chose them? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
The You don't need services:
rsshub:
image: diygod/rsshub:chromium-bundled
restart: always
ports:
- '1200:1200'
environment:
NODE_ENV: production
CACHE_TYPE: redis
REDIS_URL: 'redis://redis:6379/'
healthcheck:
test: ['CMD', 'curl', '-f', 'http://localhost:1200/healthz']
interval: 30s
timeout: 10s
retries: 3
depends_on:
- redis
redis:
image: redis:alpine
restart: always
volumes:
- redis-data:/data
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
interval: 30s
timeout: 10s
retries: 5
start_period: 5s
volumes:
redis-data:
I am not sure about memory consumption, as I've never tried The |
Beta Was this translation helpful? Give feedback.
-
Thanks for an elaborate response. One question, though: given that |
Beta Was this translation helpful? Give feedback.
AFAIK,
real-browser(puppeteer-real-browser-hono) is just a simple wrapper of https://github.com/ZFC-Digital/puppeteer-real-browser. The wrapper implementation itself shouldn't make it easier or harder to pass WAF.