- Kestrel ora ascolta su 0.0.0.0:8080 per compatibilità Docker - HTTPS redirect attivo solo in sviluppo, disabilitato in prod - Aggiunta sezione "Kestrel" in appsettings.json e nuovo appsettings.Production.json con limiti di sicurezza - Healthcheck Docker ora usa wget su /health (porta 8080) - Aggiunta documentazione dettagliata in BROWSER_ACCESS_CONFIG.md - Migliorata accessibilità browser, supporto reverse proxy e SignalR
53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
tradingbot:
|
|
container_name: tradingbot
|
|
image: tradingbot:latest
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
# Persistenza dati applicazione
|
|
- tradingbot-data:/app/data
|
|
# Opzionale: mount locale per sviluppo
|
|
# - ./logs:/app/logs
|
|
environment:
|
|
# Configurazioni applicazione
|
|
- ASPNETCORE_ENVIRONMENT=Production
|
|
- ASPNETCORE_URLS=http://+:8080
|
|
# Fuso orario (importante per trading!)
|
|
- TZ=Europe/Rome
|
|
# Opzionali - Configurazioni avanzate
|
|
# - TRADINGBOT__SimulationMode=true
|
|
# - TRADINGBOT__AutoStartBot=true
|
|
# - TRADINGBOT__UpdateIntervalSeconds=3
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8080/health"]
|
|
interval: 30s
|
|
timeout: 3s
|
|
retries: 3
|
|
start_period: 10s
|
|
networks:
|
|
- tradingbot-network
|
|
# Resource limits (opzionali ma consigliati per Unraid)
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '2.0'
|
|
memory: 1G
|
|
reservations:
|
|
cpus: '0.5'
|
|
memory: 256M
|
|
|
|
volumes:
|
|
tradingbot-data:
|
|
driver: local
|
|
|
|
networks:
|
|
tradingbot-network:
|
|
driver: bridge
|