mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-03-13 10:30:18 +08:00
35 lines
962 B
YAML
35 lines
962 B
YAML
services:
|
|
rsshub:
|
|
# two ways to enable puppeteer:
|
|
# * comment out marked lines, then use this image instead: diygod/rsshub:chromium-bundled
|
|
# * (consumes more disk space and memory) leave everything unchanged
|
|
image: diygod/rsshub
|
|
restart: always
|
|
ports:
|
|
- '1200:1200'
|
|
environment:
|
|
NODE_ENV: production
|
|
CACHE_TYPE: redis
|
|
REDIS_URL: 'redis://redis:6379/'
|
|
PUPPETEER_WS_ENDPOINT: 'ws://browserless:3000' # marked
|
|
depends_on:
|
|
- redis
|
|
- browserless # marked
|
|
|
|
browserless: # marked
|
|
image: browserless/chrome # marked
|
|
restart: always # marked
|
|
ulimits: # marked
|
|
core: # marked
|
|
hard: 0 # marked
|
|
soft: 0 # marked
|
|
|
|
redis:
|
|
image: redis:alpine
|
|
restart: always
|
|
volumes:
|
|
- redis-data:/data
|
|
|
|
volumes:
|
|
redis-data:
|