Comment on page
Uninstall
You can just stop the CARTO Self-Hosted services (including removing any volumes from the system) and delete the
carto-selfhosted
directory.In case you are running a local Postgres database (which is not recommended for Production environments), take into account that removing the docker volumes will delete the database information and your CARTO Self Hosted users information with it.
docker-compose down -V
Follow the steps below if you're using an Orchestrated container deployment in Kubernetes.
helm uninstall carto --wait
If you are using the internal provided Postgres, to delete the data you need:
# ⚠️ This is going to delete the data of the PostgreSQL inside the cluster ⚠️
kubectl delete pvc data-carto-postgresql-0
Last modified 2mo ago