- Client: Go-based Windows hardware monitoring (CPU, GPU, memory, disk, network, power) - Server: Go + Gin + SQLite backend with REST API - Frontend: Vue 3 + Element Plus dashboard - Docker deployment support - Windows service installation script
16 lines
278 B
YAML
16 lines
278 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
server:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.server
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./config.yaml:/app/config.yaml
|
|
environment:
|
|
- TZ=Asia/Shanghai
|
|
restart: unless-stopped
|