- Add Cargo.toml for project dependencies - Create Dockerfile for building and running the application - Add docker-compose configuration for service management - Implement email monitoring and processing in main.rs - Parse emails and send notifications to Discord - Include configuration file for IMAP and Discord settings
9 lines
No EOL
211 B
YAML
9 lines
No EOL
211 B
YAML
services:
|
|
memos-rss:
|
|
image: ghcr.io/imnyang/newsletter:latest
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./config.toml:/usr/app/config.toml
|
|
- /etc/localtime:/etc/localtime:ro |