Fix demo snapshot volume mount (named volume must point to directory not file)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
megaproxy 2026-04-23 22:26:08 +00:00
parent 58ab921068
commit fec3b809c5
2 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ import asyncio
import os
from pathlib import Path
SNAPSHOT_PATH = Path(os.environ.get("DEMO_SNAPSHOT_PATH", "/app/demo_snapshot.sql.gz"))
SNAPSHOT_PATH = Path(os.environ.get("DEMO_SNAPSHOT_PATH", "/app/demo_data/demo_snapshot.sql.gz"))
async def create_snapshot() -> None: