./.noesis/episodes/<episode-id>/. In a team or service setting, you usually want a shared location so everyone can see/replay the same traces.
This guide shows four common setups:
- Network volume (NFS/SMB)
- Local + S3 sync
- Docker bind mount
- Kubernetes PersistentVolumeClaim
A) Shared dev: network volume
/srv/noesis/episodes/<service>/<episode-id>/ is shared across the team.
B) Shared dev: local + S3 (or any object store)
Don’t write directly to S3; sync a local directory.C) Docker: bind-mount the runs directory
/app/.noesis/episodes/...; on the host, you see /srv/noesis/episodes/....
D) Kubernetes: PersistentVolumeClaim
/var/noesis/episodes, backed by the shared PVC.
If you can answer “Where do episodes live in this environment?” and “Who can read them?”, you’re ready to roll Noēsis out beyond your laptop.

