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 [2022/06/01 09:35] – add Run kibana antisa | wiki:docker_commands [2024/01/08 13:53] (current) – [Remove images older than 2 weeks] antisa | ||
---|---|---|---|
Line 20: | Line 20: | ||
Run kibana on http:// | Run kibana on http:// | ||
- | docker run --name kib-01 -e ELASTICSEARCH_HOSTS=http:// | + | docker run --name kib-01 -e ELASTICSEARCH_HOSTS=http:// |
+ | |||
+ | Run another instance simultaneously on 5602 port | ||
+ | docker run --name kib-02 -e ELASTICSEARCH_HOSTS=http:// | ||
+ | |||
+ | ===== Remove only dangling volumes ===== | ||
+ | |||
+ | Use this because of [[https:// | ||
+ | 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. |
wiki/docker_commands.1654076102.txt.gz · Last modified: 2022/06/01 09:35 by antisa