We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f7c0ac commit 03d4432Copy full SHA for 03d4432
scripts/relaunch.sh
@@ -53,9 +53,9 @@ if ! [[ $# -eq 1 && $1 == "-y" ]]; then
53
echo
54
if [[ $REPLY =~ [Yy]$ ]]; then
55
56
- namada_containers=("interface" "faucet" "namada" "indexer")
+ namada_images=("interface" "faucet" "namada" "indexer" "postgres" "redis")
57
58
- for image in "${namada_containers[@]}"; do
+ for image in "${namada_images[@]}"; do
59
image_ids=$(docker image ls --all | grep "$image" | awk '{print $3}')
60
if [ -n "$image_ids" ]; then
61
echo "Removing images: '$image'..."
0 commit comments