Removing a Docker Compose deployment
To uninstall Fabricate and remove all of its data, use the following commands.
To stop and remove the containers:
docker compose -f docker-compose.yml downTo stop and remove the containers, including all volumes that contain data:
docker compose -f docker-compose.yml down -vTo remove unused images:
docker image prune -aLast updated
Was this helpful?