From d8ae4e22ee1e65d08b26be3aec7c6b266094f2b8 Mon Sep 17 00:00:00 2001 From: Patrick Taylor <1963845+pstaylor-patrick@users.noreply.github.com> Date: Sun, 28 Jun 2026 08:26:19 -0500 Subject: [PATCH] Whitelist cove and money in docker-kill ignore list Keep the cove (Postgres + app) and money containers, their images, cove's Postgres volume, and both compose networks through the nightly wipe, the same way dev-caddy is kept. money uses a host bind mount, so it has no docker volume to list. --- bash/docker-kill.ignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/bash/docker-kill.ignore b/bash/docker-kill.ignore index a047dc6..74580d1 100644 --- a/bash/docker-kill.ignore +++ b/bash/docker-kill.ignore @@ -9,16 +9,30 @@ [containers] # Shared dockerized Caddy edge fronting local-dev hostnames. ^dev-caddy$ +# cove (servant): Postgres + app, compose project "cove". +^cove-(app|db)-[0-9]+$ +# money (personal-finance): compose project "personal-finance". +^personal-finance-money-[0-9]+$ [images] # Keep the Caddy image the kept container runs on. It is digest-pinned, so its # local tag shows as ; match the repository rather than a tag. ^caddy: +# cove: app image is built locally; db uses pgvector. +^cove-app: +^pgvector/pgvector: +# money: image built locally as money:dev. +^money:dev$ [volumes] ^dev-caddy_config$ ^dev-caddy_data$ +# cove Postgres data. Compose prefixes the project name, so the real volume is +# cove_cove-pgdata, not cove-pgdata. money uses a host bind mount, no volume. +^cove_cove-pgdata$ [networks] ^cas360-edge$ ^dev-caddy_default$ +^cove_default$ +^personal-finance_default$