diff --git a/infrastructure/zk/src/down.ts b/infrastructure/zk/src/down.ts index b75ab48c04b9..b79c90e8b7d7 100644 --- a/infrastructure/zk/src/down.ts +++ b/infrastructure/zk/src/down.ts @@ -4,7 +4,7 @@ import * as utils from './utils'; export async function down() { await utils.spawn('docker compose down -v'); await utils.spawn('docker compose rm -s -f -v'); - await utils.spawn('docker run --rm -v volumes:/volumes postgres:14 bash -c "rm -rf /volumes/*"'); + await utils.spawn('docker run --rm -v ./volumes:/volumes postgres:14 bash -c "rm -rf /volumes/*"'); } export const command = new Command('down').description('stop development containers').action(down);