mirror of
https://github.com/Tony0410/readlater.git
synced 2026-05-24 13:52:03 +08:00
- Save articles via URL or bookmarklet - Clean dark reader with customizable fonts/sizing - Text-to-speech with browser + Kokoro support - Speed control up to 3x - Favorites and archive - SQLite database with Drizzle ORM - Docker deployment ready Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
791 B
YAML
31 lines
791 B
YAML
services:
|
|
readlater:
|
|
build: .
|
|
container_name: readlater
|
|
restart: unless-stopped
|
|
ports:
|
|
- "6123:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- DATABASE_PATH=/app/data/readlater.db
|
|
|
|
# Optional: Kokoro TTS for high-quality text-to-speech
|
|
# Uncomment if you want to use Kokoro instead of browser TTS
|
|
# kokoro:
|
|
# image: ghcr.io/remsky/kokoro-fastapi:latest
|
|
# container_name: kokoro-tts
|
|
# restart: unless-stopped
|
|
# ports:
|
|
# - "8880:8880"
|
|
# environment:
|
|
# - PYTHONUNBUFFERED=1
|
|
# # GPU support (optional, for faster inference)
|
|
# # deploy:
|
|
# # resources:
|
|
# # reservations:
|
|
# # devices:
|
|
# # - driver: nvidia
|
|
# # count: 1
|
|
# # capabilities: [gpu]
|