Files
remanso-jetstream/.dockerignore
Julien Calixte 77f24bf7ce chore(docker): include backfill script in image
Backfill must read the SQLite volume that lives inside the api/jetstream
containers, so it has to be runnable via `deno task backfill:search`
from a Coolify exec shell.
2026-06-07 11:36:11 +02:00

29 lines
554 B
Plaintext

# version control / editor / OS
.git/
.gitignore
.github/
.idea/
.vscode/
.DS_Store
# local SQLite + sidecars (DB lives at /data in the container)
*.db
*.db-shm
*.db-wal
*.db-journal
remote-db/
# secrets — provide via the orchestrator's env config, not baked into the image
.env
.env.*
# admin / dev-only scripts (run locally, not in prod containers)
scripts/
# Backfill needs to run inside the api/jetstream container so it can read
# the shared SQLite volume; ship it in the image.
!scripts/backfill-opensearch.ts
# logs and caches
*.log
.cache/