2026-02-23 23:00:02 +00:00
|
|
|
services:
|
|
|
|
|
app:
|
|
|
|
|
image: ghcr.io/slfhstd/deletedposts:latest
|
|
|
|
|
container_name: mch-deletedposts
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
volumes:
|
|
|
|
|
- /docker/data/deletedposts:/app/config
|
2026-02-24 21:45:13 +00:00
|
|
|
environment:
|
|
|
|
|
CLIENT_ID: "abc123"
|
|
|
|
|
CLIENT_SECRET: "secret"
|
|
|
|
|
USER_AGENT: "DeletedPostsBot/1.0"
|
|
|
|
|
USERNAME: "botuser"
|
|
|
|
|
PASSWORD: "botpass"
|
|
|
|
|
SUB_NAME: "my_subreddit"
|
|
|
|
|
MAX_DAYS: "90" # strings are converted to ints when the
|
|
|
|
|
MAX_POSTS: "500" # corresponding config value is an int
|
|
|
|
|
SLEEP_MINUTES: "10"
|