feat: initial architecture setup with Docker, SQLite persistence and PDF tracking

This commit is contained in:
Silas Brito
2026-07-13 18:58:05 -03:00
commit 27652716d7
10 changed files with 1365 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
version: '3.8'
services:
web:
build:
context: .
dockerfile: Dockerfile
container_name: netbackup_log_insights
ports:
- "8501:8501"
volumes:
# Map host local data folder to container /app/data to preserve database history
- ./data:/app/data
environment:
- NBU_INSIGHTS_RUNNING=1
restart: always