- Implemented LocalFilesProvider to manage local video files. - Added LocalIndex for in-memory and SQLite-backed indexing of video files. - Introduced scanning functionality to detect video files and extract metadata. - Added API endpoints for listing collections, genres, and series based on provider capabilities. - Enhanced existing routes to check for provider capabilities before processing requests. - Updated frontend to utilize provider capabilities for conditional rendering of UI elements. - Implemented rescan functionality to refresh the local files index. - Added database migration for local files index schema.
28 lines
581 B
Docker
28 lines
581 B
Docker
FROM rust:1.92 AS builder
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
# Build the release binary
|
|
RUN cargo build --release -p api
|
|
|
|
FROM debian:bookworm-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install OpenSSL, CA certs, and ffmpeg (provides ffprobe for local-files duration scanning)
|
|
RUN apt-get update && apt-get install -y libssl3 ca-certificates ffmpeg && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY --from=builder /app/target/release/api .
|
|
|
|
|
|
# Create data directory for SQLite
|
|
RUN mkdir -p /app/data
|
|
|
|
ENV DATABASE_URL=sqlite:///app/data/template.db
|
|
ENV SESSION_SECRET=supersecretchangeinproduction
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["./api"]
|