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
- Host: GitHub
- URL: https://github.com/xstar97/reddit-auto-reply
- Owner: xstar97
- Created: 2023-04-17T20:05:06.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-12-24T11:45:06.000Z (over 1 year ago)
- Last Synced: 2025-10-14T10:15:57.811Z (8 months ago)
- Topics: docker, python, reddit
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```