dockinfo

Crates.iodockinfo
lib.rsdockinfo
version1.0.1
sourcesrc
created_at2020-05-01 06:26:13.908796
updated_at2020-05-01 06:32:17.442853
descriptionA tool to get information from docker containers
homepagehttps://github.com/sntdevco/dockinfo
repositoryhttps://github.com/sntdevco/dockinfo
max_upload_size
id236039
size18,179
Sayan (ohsayan)

documentation

README

dockinfo - A container inspection command line utility

What is dockinfo?

dockinfo is an utility that enables users to use docker inspect commands in a more ergonomic way. For now, the inspection options are only limited to checking the ip address of a given container. More commands will be added soon.

Install

Simply run:

cargo install dockinfo

Note: Windows is not supported, just yet.

Available commands

  • sudo ./dockinfo ip containername

    Output:

    $ sudo ./dockinfo ip containername
    '172.17.0.8'
    

Environment Variables

dockinfo makes use of a DOCKER_BIN environment variable. Usually you won't need this environment variable unless your docker binary is not in your system PATH. In that case, you can run the command like this:

$ DOCKER_BIN=/home/username/bin/docker ./dockinfo ip containername

Why a separate program?

The main reason why I decided to build this is because I use containers that have instances of databases. Now since I use about three databases and the IP addresses assigned to them change quite frequently and it becomes really annoying to keep using the docker inspect syntax. So I created a simple tool that can be used to inspect docker containers without blowing your mind off using the docker inspect syntax.

Contributing

Yes, of course! If you can work on any of the docker inspect tasks, go ahead open a PR, and I will be right there!

License

This project is licensed under the Apache-2.0 License.

Commit count: 4

cargo fmt