Add library browser feature

This commit is contained in:
2026-08-20 13:47:51 -04:00
commit 6f0fc6cb60
12 changed files with 2451 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
version: '3.8'
services:
offlineu:
image: ghcr.io/skippysteve/offlineu:main
container_name: offlineu-app
ports:
- "5000:5000"
environment:
- FLASK_ENV=production
volumes:
# Mount a local directory for course data persistence
- ./courses:/app/courses
# Mount a local directory for user data/progress
- ./data:/app/data
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s