mirror of
https://github.com/Retropex/custom-ocean.xyz-dashboard.git
synced 2025-05-12 11:10:44 +02:00

Update wallet address and improve user flow - Changed the `WALLET` environment variable in `docker-compose.yml` to a new Bitcoin address. - Updated the wallet address in the "Use Defaults" button handler in `boot.html`. - Modified the logic for user selection of 'N' to display the configuration form directly instead of redirecting to the dashboard. - Updated fallback messages to reflect the new title "MINING CONTROL SYSTEM".
29 lines
529 B
YAML
29 lines
529 B
YAML
version: '3'
|
|
|
|
services:
|
|
redis:
|
|
image: redis:alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- redis_data:/data
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
dashboard:
|
|
build: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
- REDIS_URL=redis://redis:6379
|
|
- WALLET=35eS5Lsqw8NCjFJ8zhp9JaEmyvLDwg6XtS
|
|
- POWER_COST=0
|
|
- POWER_USAGE=0
|
|
- LOG_LEVEL=INFO
|
|
volumes:
|
|
- ./logs:/app/logs
|
|
depends_on:
|
|
- redis
|
|
|
|
volumes:
|
|
redis_data: |