Initial commit - WOL Manager Flask application
- Added containerized Flask web application for Wake-on-LAN management - Implemented computer management with file-based configuration - Added network scanning and device discovery functionality - Included Docker setup with privileged networking for WOL operations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
25
docker-compose.yml
Normal file
25
docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
wol-web:
|
||||
build: .
|
||||
container_name: wol-manager
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8088:8080"
|
||||
volumes:
|
||||
- ./data:/data
|
||||
networks:
|
||||
- wol-network
|
||||
environment:
|
||||
- PYTHONUNBUFFERED=1
|
||||
# Necesare pentru Wake-on-LAN
|
||||
network_mode: host
|
||||
privileged: true
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
- NET_RAW
|
||||
|
||||
networks:
|
||||
wol-network:
|
||||
driver: bridge
|
||||
Reference in New Issue
Block a user