diff --git a/scripts/docker.sh b/scripts/docker.sh index ae12635..9e1ee7b 100755 --- a/scripts/docker.sh +++ b/scripts/docker.sh @@ -4,3 +4,4 @@ docker build -t dip:latest . docker tag dip:latest registry.paulbsd.com/images/dip:latest docker push registry.paulbsd.com/images/dip:latest +kubectl rollout restart deployment dip diff --git a/static/js/main.js b/static/js/main.js index ae7a53b..878f1ac 100644 --- a/static/js/main.js +++ b/static/js/main.js @@ -2,20 +2,16 @@ function main() { let dip_ip = document.getElementById("dip_ip"); let dip_hostname = document.getElementById("dip_hostname"); let dip_city = document.getElementById("dip_city"); + let dip_country = document.getElementById("dip_country"); let dip_as_number = document.getElementById("dip_as_number"); let dip_as_org = document.getElementById("dip_as_org"); - var ip = ""; - if (window.location.pathname.length > 4) { - ip = window.location.pathname.split("/")[1]; - console.log(ip); - } - fetch(`/json/${ip}`).then((response) => { response.json().then((res) => { dip_ip.innerHTML = res["ip"]; dip_hostname.innerHTML = res["hostname"]; dip_city.innerHTML = res["city"]; + dip_country.innerHTML = res["country"]; dip_as_number.innerHTML = res["as"]["number"]; dip_as_org.innerHTML = res["as"]["org"]; });