This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Linux: | |
| ``` | |
| docker run -it --rm alpine /sbin/ip route|awk '/default/ { print $3 }' | |
| ``` | |
| Windows: | |
| ``` | |
| docker run -it --rm alpine nslookup host.docker.internal | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| VERSION=1.2.3.4 | |
| oldIFS=$IFS | |
| # delimiter | |
| IFS="." | |
| #Read the split words into an array based on delimiter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.diffchecker.com/i1c5ZNyo/ | |
| PHP 8.2.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/GoogleContainerTools/container-diff | |
| container-diff analyze <image-name> --type file > first.txt | |
| container-diff analyze <image-name> --type file > second.txt | |
| diff --side-by-side first.txt second.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo du -aBm -d 1 /var/lib/docker/volumes 2>/dev/null | sort -nr | head -n 15 | |
| docker system df -v |