Initial commit

This commit is contained in:
root
2025-12-03 16:46:11 +00:00
commit 1612d10bb1
25 changed files with 145983 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
dashboard:
build: ./app
container_name: custom_dashboard
network_mode: "host"
volumes:
- ./app/static/uploads:/app/static/uploads
- data:/data
env_file:
- .env
restart: unless-stopped
privileged: true
volumes:
data: {}