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 down

To stop and remove the containers, including all volumes that contain data:

docker compose -f docker-compose.yml down -v

To remove unused images:

docker image prune -a

Last updated

Was this helpful?