Onix Version 0.2 - migrate from beckn-utilities

This commit is contained in:
Venkatesh Babu
2024-03-18 17:12:46 +05:30
parent 8570746b0c
commit 48c80712a2
39 changed files with 2417 additions and 2 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