an atproto based link aggregator

Fix LiteFS config per Fly.io docs

Mount volume at /var/lib/litefs as recommended by Fly.io LiteFS docs.
The FUSE mount at /litefs is virtual and created by LiteFS.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+11 -11
+2 -2
Dockerfile
··· 30 30 COPY --from=build /app/drizzle ./drizzle 31 31 COPY litefs.yml /etc/litefs.yml 32 32 33 - # Create directories (/data is the mounted volume, /litefs is FUSE mount) 34 - RUN mkdir -p /data/litefs /litefs 33 + # Create directories (/var/lib/litefs is mounted volume, /litefs is FUSE mount) 34 + RUN mkdir -p /var/lib/litefs /litefs 35 35 36 36 ENV NODE_ENV=production 37 37 ENV PORT=3000
+2 -2
Dockerfile.ingester
··· 33 33 COPY --from=build /app/drizzle ./drizzle 34 34 COPY litefs.ingester.yml /etc/litefs.yml 35 35 36 - # Create directories (/data is the mounted volume, /litefs is FUSE mount) 37 - RUN mkdir -p /data/litefs /litefs 36 + # Create directories (/var/lib/litefs is mounted volume, /litefs is FUSE mount) 37 + RUN mkdir -p /var/lib/litefs /litefs 38 38 39 39 # Environment 40 40 ENV NODE_ENV=production
+2 -2
fly.ingester.toml
··· 12 12 [env] 13 13 CONTENT_DB_PATH = '/litefs/content.db' 14 14 15 - # Single volume for LiteFS data 15 + # Volume for LiteFS data 16 16 [[mounts]] 17 17 source = 'ingester_data' 18 - destination = '/data' 18 + destination = '/var/lib/litefs' 19 19 20 20 [[vm]] 21 21 size = 'shared-cpu-1x'
+3 -3
fly.toml
··· 10 10 11 11 [env] 12 12 CONTENT_DB_PATH = '/litefs/content.db' 13 - LOCAL_DB_PATH = '/data/local.db' 13 + LOCAL_DB_PATH = '/var/lib/litefs/local.db' 14 14 NODE_ENV = 'production' 15 15 HOST = '0.0.0.0' 16 16 17 - # Single volume for both LiteFS data and local DB 17 + # Volume for LiteFS data and local DB 18 18 [[mounts]] 19 19 source = 'papili_data' 20 - destination = '/data' 20 + destination = '/var/lib/litefs' 21 21 22 22 [http_service] 23 23 internal_port = 3000
+1 -1
litefs.ingester.yml
··· 5 5 dir: '/litefs' 6 6 7 7 data: 8 - dir: '/data/litefs' 8 + dir: '/var/lib/litefs' 9 9 10 10 lease: 11 11 type: 'consul'
+1 -1
litefs.yml
··· 5 5 dir: '/litefs' 6 6 7 7 data: 8 - dir: '/data/litefs' 8 + dir: '/var/lib/litefs' 9 9 10 10 lease: 11 11 type: 'consul'