Excel tool im Browser

This commit is contained in:
jonasgaudian
2026-02-21 02:01:12 +01:00
parent 4bffc34aad
commit 0ce01e95a1
10 changed files with 1084 additions and 0 deletions

35
docker-compose.yml Normal file
View File

@@ -0,0 +1,35 @@
# Excel Filter Tool - Docker Compose Configuration
# For Coolify deployment
version: '3.8'
services:
excel-filter:
build:
context: .
dockerfile: Dockerfile
container_name: excel-filter-app
restart: unless-stopped
ports:
- "8501:8501"
environment:
- TZ=Europe/Berlin
volumes:
# Optional: Persist temporary files
- temp_data:/tmp
networks:
- excel-filter-network
healthcheck:
test: ["CMD", "curl", "--fail", "http://localhost:8501/_stcore/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
volumes:
temp_data:
driver: local
networks:
excel-filter-network:
driver: bridge