Replies: 2 comments
-
|
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.
Uh oh!
There was an error while loading. Please reload this page.
-
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.
All reactions