- Added Windows PowerShell network scanner with auto-detection and interactive mode - Implemented dual scanning system (Windows + Linux fallback) - Added computer management features (rename, delete, duplicate checking) - Enhanced UI with modern responsive design and Romanian localization - Added comprehensive Windows-Linux integration with WSL interop - Improved error handling and user feedback throughout - Added hot reload for development and comprehensive documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
532 B
YAML
22 lines
532 B
YAML
services:
|
|
wol-web:
|
|
build: .
|
|
container_name: wol-manager
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${WOL_EXTERNAL_PORT:-5000}:5000"
|
|
volumes:
|
|
- ./data:/data
|
|
- ./scripts:/scripts
|
|
- ./app:/app
|
|
- /mnt/c:/mnt/c
|
|
- /run/WSL:/run/WSL
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
- WSL_INTEROP=${WSL_INTEROP}
|
|
- FLASK_DEBUG=${FLASK_DEBUG:-false}
|
|
network_mode: "${WOL_NETWORK_MODE:-bridge}"
|
|
privileged: true
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- NET_RAW |