From 8e62044666310cace1e886653c943b52d93de0ca Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Tue, 18 Jun 2019 21:19:51 +1000 Subject: [PATCH] update readme --- README.md | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 91 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2597683f..96aa93e1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,92 @@ -# lazydocker +# lazydocker [![CircleCI](https://circleci.com/gh/jesseduffield/lazydocker.svg?style=svg)](https://circleci.com/gh/jesseduffield/lazydocker) [![Go Report Card](https://goreportcard.com/badge/github.com/jesseduffield/lazydocker)](https://goreportcard.com/report/github.com/jesseduffield/lazydocker) [![GolangCI](https://golangci.com/badges/github.com/jesseduffield/lazydocker.svg)](https://golangci.com) [![GoDoc](https://godoc.org/github.com/jesseduffield/lazydocker?status.svg)](http://godoc.org/github.com/jesseduffield/lazydocker) [![GitHub tag](https://img.shields.io/github/tag/jesseduffield/lazydocker.svg)]() -A simple terminal UI for managing all things docker. +A simple terminal UI for docker, written in Go with the [gocui](https://github.com/jroimartin/gocui 'gocui') library. + +Are YOU tired of this workflow: + +- recognise your local server isn't responding +- run `docker ps` +- see your container exited +- place mouse at beginning of the container ID, drag to the end of the container ID +- press cmd+c +- run 'docker restart ' + +sounds like you might want to give lazydocker a try! + +![Gif](/docs/resources/lazydocker-example.gif) + +- [Installation](https://github.com/jesseduffield/lazydocker#installation) +- [Usage](https://github.com/jesseduffield/lazydocker#usage), + [Keybindings](/docs/keybindings) +- [Cool Features](https://github.com/jesseduffield/lazydocker#cool-features) +- [Contributing](https://github.com/jesseduffield/lazydocker#contributing) +- [Video Tutorial](https://youtu.be/VDXvbHZYeKY) +- [Twitch Stream](https://www.twitch.tv/jesseduffield) + +## Installation + +### Homebrew + +```sh +brew tap jesseduffield/lazydocker +brew install lazydocker +``` + +### Binary Release (Linux/OSX) + +You can download a binary release [here](https://github.com/jesseduffield/lazydocker/releases). + +### Go + +```sh +go get github.com/jesseduffield/lazydocker +``` + +## Usage + +Call `lazydocker` in your terminal. I personally use this a lot so I've made an alias for it like so: + +``` +echo "alias ld='lazydocker'" >> ~/.zshrc +``` + +(you can substitute .zshrc for whatever rc file you're using) + +- Basic video tutorial [here](https://youtu.be/VDXvbHZYeKY). +- List of keybindings + [here](/docs/keybindings). + +## Cool features + +everything is one keypress away: + +- viewing the state of your docker or docker-compose container environment at a glance +- viewing logs for a container/service +- viewing cool ascii graphs of any container with any metric you want to measure (e.g. CPU percentage, memory usage) +- attaching to a container/service +- restarting/removing/rebuilding containers/services +- viewing the ancestor layers of a given image +- pruning containers, images, or volumes that are hogging up disk space + +## Contributing + +We love your input! Please check out the [contributing guide](CONTRIBUTING.md). +For contributor discussion about things not better discussed here in the repo, join the slack channel + +[![Slack](/docs/resources/slack_rgb.png)](https://join.slack.com/t/lazydocker/shared_invite/enQtNDE3MjIwNTYyMDA0LTM3Yjk3NzdiYzhhNTA1YjM4Y2M4MWNmNDBkOTI0YTE4YjQ1ZmI2YWRhZTgwNjg2YzhhYjg3NDBlMmQyMTI5N2M) + +## Donate + +If you would like to support the development of lazydocker, please donate + +[![Donate](https://d1iczxrky3cnb2.cloudfront.net/button-medium-blue.png)](https://donorbox.org/lazygit) + +## Social + +If you want to see what I (Jesse) am up to in terms of development, follow me on +[twitter](https://twitter.com/DuffieldJesse) or watch me program on +[twitch](https://www.twitch.tv/jesseduffield) + +## Alternatives + +- [docui](https://github.com/skanehira/docui) (Skanehira beat me to the punch on making a docker terminal UI, so definitely check out that repo as well! I think the two repos can live in harmony though: lazydocker is more about managing existing containers/services, and docui is more about creating and configuring them).