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 [2023/04/18 12:46] – add Remove only dangling volumes antisa | wiki:docker_commands [2025/11/04 10:00] (current) – add Print IPs for all containers antisa | ||
|---|---|---|---|
| Line 29: | Line 29: | ||
| Use this because of [[https:// | Use this because of [[https:// | ||
| docker volume rm $(docker volume ls -q -f dangling=true) | docker volume rm $(docker volume ls -q -f dangling=true) | ||
| + | |||
| + | ===== Connect to different docker daemon running on different port ===== | ||
| + | Example connecting to [[wiki: | ||
| + | docker -H tcp:// | ||
| + | |||
| + | You will get error //Error response from daemon: Client sent an HTTP request to an HTTPS server//. You have to point the docker client to use the certificates e.g. | ||
| + | |||
| + | docker --tlsverify --tlscacert=/ | ||
| + | |||
| + | ===== How to determine what containers use the docker volume? ===== | ||
| + | docker ps -a --filter volume=VOLUME_NAME_OR_MOUNT_POINT | ||
| + | |||
| + | ===== Remove images older than 2 weeks ===== | ||
| + | |||
| + | 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.1681821967.txt.gz · Last modified: by antisa
