Feedless is a versatile middleware designed to help you automate the web and build custom, well-behaved bots and workflows. It gives you the power to create, manipulate, and consume web content exactly how you want, all through a system that is extendable with plugins.
Take full control over your information streams with a wide range of capabilities:
services:
feedless:
image: damoeb/feedless:latest
ports:
- "8000:8000"
environment:
- DATABASE_URL=postgresql://feedless:${POSTGRES_PASSWORD}@db:5432/feedless
- REDIS_URL=redis://redis:6379/0
- SECRET_KEY=${SECRET_KEY}
depends_on:
- db
- redis
restart: unless-stopped
db:
image: postgres:14-alpine
environment:
- POSTGRES_USER=feedless
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=feedless
volumes:
- ./db-data:/var/lib/postgresql/data
restart: unless-stopped
redis:
image: redis:7-alpine
volumes:
- ./redis-data:/data
restart: unless-stoppedPOSTGRES_PASSWORD=your_secure_database_password
SECRET_KEY=your_super_secret_key_hereAuto-fetched about 20 hours ago
Auto-fetched about 20 hours ago