fix: setup flow

This commit is contained in:
mayur.popli
2025-08-20 20:16:20 +05:30
parent 2eadd8ca58
commit 305d6d6496
51 changed files with 3358 additions and 49 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
get_container_ip() {
container_name=$1
container_ip=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $container_name)
echo $container_ip
}
#get_container_ip $1