fix: Update Docker configuration and documentation for improved deployment process

This commit is contained in:
2025-11-13 21:10:10 +01:00
parent 6ed77b120f
commit 17021b00d6
6 changed files with 323 additions and 185 deletions

View File

@@ -221,13 +221,16 @@ For containerized deployment with built-in scheduling:
```bash
# Ensure accounts.jsonc and config.jsonc exist in src/
docker compose up -d
npm run docker:compose
# Or use docker compose directly
docker compose -f docker/compose.yaml up -d
# View logs
docker logs -f microsoft-rewards-script
docker logs -f microsoft-rewards-bot
# Check status
docker compose ps
docker compose -f docker/compose.yaml ps
```
Container includes:
@@ -236,7 +239,7 @@ Container includes:
- ✅ Random execution delays (anti-detection)
- ✅ Health checks
**📖 [Full Docker Guide](docs/docker.md)**
**📖 [Complete Docker Guide](docs/docker-deployment.md)**
---