From 2bd031a7a81b366db56fdf5047a4c1e0bcc3186b Mon Sep 17 00:00:00 2001 From: Naeem Maqsood <40123300+MNMaqsood@users.noreply.github.com> Date: Sun, 20 Nov 2022 15:22:24 +0500 Subject: [PATCH] Prune unused networks Add instruction to prune unused networks by containers, otherwise causes issues on deployment script as same network name exists albeit not used by any container --- docker-deploy/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-deploy/README.md b/docker-deploy/README.md index e2a156bc7..00ab94713 100644 --- a/docker-deploy/README.md +++ b/docker-deploy/README.md @@ -718,5 +718,6 @@ To delete the cluster completely, log in to each host and run the commands as fo ```bash cd /data/projects/fate/confs-/ # id of party docker-compose down +docker network prune rm -rf ../confs-/ # delete the legacy files ```