mirror of
https://github.com/LightZirconite/Microsoft-Rewards-Bot.git
synced 2026-01-10 17:26:17 +00:00
Refactor project structure and update references from Light60-1 to Obsidian-wtf
- Changed working directory in Dockerfile from /usr/src/microsoft-rewards-script to /app - Updated Docker container name and service name from microsoft-rewards-script to microsoft-rewards-bot - Modified LICENSE, NOTICE, README.md, and other documentation files to reflect new project ownership - Updated package.json and package-lock.json to change project name and repository links - Adjusted entrypoint script and Docker Compose configurations for new paths - Updated security and login handling in source code to reflect new documentation URLs - Changed logo asset to reflect new branding
This commit is contained in:
10
compose.yaml
10
compose.yaml
@@ -1,14 +1,14 @@
|
||||
services:
|
||||
microsoft-rewards-script:
|
||||
microsoft-rewards-bot:
|
||||
build: .
|
||||
container_name: microsoft-rewards-script
|
||||
container_name: microsoft-rewards-bot
|
||||
restart: unless-stopped
|
||||
|
||||
# Volume mounts: Specify a location where you want to save the files on your local machine.
|
||||
volumes:
|
||||
- ./src/accounts.jsonc:/usr/src/microsoft-rewards-script/src/accounts.jsonc:ro
|
||||
- ./src/config.jsonc:/usr/src/microsoft-rewards-script/src/config.jsonc:ro
|
||||
- ./sessions:/usr/src/microsoft-rewards-script/sessions # Optional, saves your login session
|
||||
- ./src/accounts.jsonc:/app/src/accounts.jsonc:ro
|
||||
- ./src/config.jsonc:/app/src/config.jsonc:ro
|
||||
- ./sessions:/app/sessions
|
||||
|
||||
environment:
|
||||
TZ: "America/Toronto" # Set your timezone for proper scheduling (used by image and scheduler)
|
||||
|
||||
Reference in New Issue
Block a user