social-media-news-bot/synology/docker-compose.yaml

51 lines
1.2 KiB
YAML
Raw Normal View History

version: '3.8'
services:
scraper:
2024-12-26 21:33:27 +00:00
container_name: g4media-scraper
2025-01-06 20:52:21 +00:00
restart: always
image: metonymy/scrapper
environment:
RUST_LOG: info
command:
- "--redis-connection-string"
- "redis://192.168.0.221:6379"
- "--redis-stream-name"
- "posts::g4media"
2025-01-03 21:59:07 +00:00
bluesky-bot:
2025-01-04 15:20:58 +00:00
container_name: bluesky-bot-1
2025-01-06 20:52:21 +00:00
restart: always
2025-01-01 14:19:03 +00:00
image: metonymy/bot
environment:
RUST_LOG: info
command:
- "--redis-connection-string"
- "redis://192.168.0.221:6379"
- "--redis-stream-name"
- "posts::g4media"
- "--redis-consumer-group"
- "bluesky-bot-nas"
- "--redis-consumer-name"
2025-01-04 15:20:58 +00:00
- "bluesky-bot-1"
2025-01-03 21:59:07 +00:00
- "bluesky"
2025-01-01 14:19:03 +00:00
- "--bluesky-handle"
- "REPLACE-ME"
- "--bluesky-password"
2025-01-04 15:20:58 +00:00
- "REPLACE-ME"
mastodon-bot:
container_name: mastodon-bot-1
2025-01-06 20:52:21 +00:00
restart: always
2025-01-04 15:20:58 +00:00
image: metonymy/bot
environment:
RUST_LOG: info
command:
- "--redis-connection-string"
- "redis://192.168.0.221:6379"
- "--redis-stream-name"
- "posts::g4media"
- "--redis-consumer-group"
2025-01-04 15:21:27 +00:00
- "mastodon-bot-nas"
2025-01-04 15:20:58 +00:00
- "--redis-consumer-name"
- "mastodon-bot-1"
2025-01-04 15:28:47 +00:00
- "mastodon"
2025-01-04 15:20:58 +00:00
- "--access-token"
2025-01-01 14:19:03 +00:00
- "REPLACE-ME"