Removing a Docker Compose deployment
docker compose -f docker-compose.yml downdocker compose -f docker-compose.yml down -vdocker image prune -aLast updated
Was this helpful?
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?
Was this helpful?