An open API service indexing awesome lists of open source software.

https://github.com/xstar97/reddit-auto-reply

Auto Reply Reddit Bot
https://github.com/xstar97/reddit-auto-reply

docker python reddit

Last synced: about 2 months ago
JSON representation

Auto Reply Reddit Bot

Awesome Lists containing this project

README

          

# reddit-auto-reply
reddit-auto-reply python docker bot

```yaml
version: "3.8"

services:
reddit-auto-reply:
image: ghcr.io/xstar97/reddit-auto-reply:latest
ports:
- "8080:3000"
environment:
- BOT_STATE=production
- REDIS_HOST=localhost
- REDIS_PASSWORD=password
- REDIS_PORT=6379
- CLIENT_ID=reddit_client_id
- CLIENT_SECRET=reddit_client_secret
- USERNAME=REDDIT_USER
- PASSWORD=REDDIT_PASS
- USER_AGENT=linux:script:v0.0.1 (by u/USER)
- SUBREDDITS=subreddit1,subreddit2 #delim by ,
- TRIGGER_WORDS=word1,word2 #delim by ,
- COMMENT_WAIT_SECONDS=10
- EXCLUDE_USERS=user1,user2 #delim by ,
- COMMENT_TEXT="Hello world!"
restart: unless-stopped
```