wiki:docker_commands
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| wiki:docker_commands [2024/01/08 13:44] – add 2 more commands antisa | wiki:docker_commands [2026/05/21 12:10] (current) – add Get IPs of all containers antisa | ||
|---|---|---|---|
| Line 16: | Line 16: | ||
| docker inspect -f ' | docker inspect -f ' | ||
| + | |||
| + | ===== Get IPs of all containers with names ===== | ||
| + | docker inspect -f ' | ||
| ===== Run kibana ===== | ===== Run kibana ===== | ||
| Line 43: | Line 46: | ||
| ===== Remove images older than 2 weeks ===== | ===== Remove images older than 2 weeks ===== | ||
| - | docker image prune -a --filter " | + | docker image prune -a --filter " |
| + | |||
| + | The second command removes dangling build cache which will reclaim the disk space after image deletion. | ||
| + | |||
| + | ===== Print IPs for all containers ===== | ||
| + | |||
| + | docker ps -a --format "table {{.ID}}\t{{.Names}}\t{{.Image}}" | ||
| + | | tail -n +2 \ | ||
| + | | while read -r id name image; do | ||
| + | ip=$(docker inspect --format=' | ||
| + | printf " | ||
| + | done | ||
wiki/docker_commands.1704721483.txt.gz · Last modified: by antisa
