EddytorDocs & API

Reset a throwaway stack

Start over from zero on a local evaluation stack - and why this is eval-only.

On a throwaway local stack you can wipe everything and start fresh.

Heads up

This destroys all data - Postgres metadata and the bundled object store. Only do this on an evaluation stack you don't care about, never one holding data you want.

Docker Compose

docker compose down -v && docker compose up -d

-v removes the volumes (Postgres + bundled Garage), so you're back to a clean install. Then re-create the first admin:

docker compose exec eddytor-server eddytoradm setup --email you@example.com --org "Default"

eddytoradm setup is idempotent, so re-running it on a non-wiped stack is a harmless no-op.

Kubernetes (local eval)

For a bundled-everything eval cluster, uninstall and reinstall:

helm uninstall eddytor -n eddytor
kubectl delete namespace eddytor        # also drops bundled PVCs
# then reinstall per the local-clusters guide

See Local clusters.

Don't do this in production

For real deployments you have external, backed-up Postgres and object storage - resetting means restoring from backup, not down -v. Protect EDDYTOR_ENCRYPTION_KEY and snapshot Postgres; see Backups & key rotation.

Next

On this page