Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,13 @@ coverage-report: ## Combine and report coverage
uv run $(PYTHON_ARG) coverage html
uv run $(PYTHON_ARG) coverage xml

docker-clean: ## Stop and remove all Docker containers and volumes
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: this can go in the maintenance section since make help groups them

docker compose -f dev/docker-compose-integration.yml down -v --remove-orphans
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a little redundant with cleanup command

docker compose -f dev/docker-compose.yml down -v --remove-orphans
docker compose -f dev/docker-compose-azurite.yml down -v --remove-orphans
docker compose -f dev/docker-compose-gcs-server.yml down -v --remove-orphans


# ================
# Documentation
# ================
Expand Down