Docker, Github

This commit is contained in:
LeLawnGames
2024-12-11 03:08:08 -05:00
parent d132e33f63
commit 69da5fec22
4 changed files with 76 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
# Network Stuff
## Finding IP Address
To find the IP address of your computer there are two general directions to think about, Public IP and Private IP.
To find your public ip:
```bash
curl ifconfig.me # When curl is installed
wget ifconfig.me # When wget is installed
```
For your private ip:
```bash
ip addr
```