How go get my public IP address

There are several pretty good websites that can tell you your IP address. ident.me ip.zxc.sx ifconfig.me icanhazip.com ipinfo.io 2ip.ru You can open them in a browser or use the terminal to get your IP address. curl ident.me curl ip.zxc.sx curl ifconfig.me curl icanhazip.com curl ipinfo.io curl 2ip.ru If you don’t have a curl installed, you can use wget. wget -qO- ident.me wget -qO- ip.zxc.sx wget -qO- ifconfig.me wget -qO- icanhazip.com wget -qO- ipinfo....

June 22, 2024 · 2 min

How to install Docker on Linux

Installation For the most default installation, you can use the official Docker installation script. This script will add the Docker repository to your system and install the latest version of Docker. Notice that the scripts are not recommended for production environments. curl -fsSL https://get.docker.com | sudo sh Rootless Installation Rootless Installation requires a few more steps than the default installation. Enable lingering for your user: sudo loginctl enable-linger $USER Set XDG_RUNTIME_DIR variable to avoid systemd issues:...

June 18, 2024 · 2 min