Initial commit: File manager with upload, search, and modal dialogs

This commit is contained in:
Admin
2026-01-22 16:49:21 +08:00
commit 267ae69030
8 changed files with 2884 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
version: '3.8'
services:
file-manager:
build:
context: .
dockerfile: Dockerfile
container_name: file-manager
ports:
- "8080:8080"
volumes:
- files-data:/data
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:8080/"]
interval: 30s
timeout: 10s
retries: 3
volumes:
files-data:
driver: local