The lazier way to manage everything docker
Find a file
christophe-duc 1d12ef109d Rename lazydocker to lazypodman (Phase 1)
Complete rename of the project from lazydocker to lazypodman:

- Update Go module to github.com/christophe-duc/lazypodman
- Update all import statements across 51 Go files
- Update binary name, descriptions, and CLI help text
- Update config directory paths to christophe-duc/lazypodman
- Update all 9 i18n language files with new strings
- Update scripts (install_update_linux.sh, update_docs.sh)
- Update config files (docker-compose.yml, .goreleaser.yml, etc.)
- Update documentation (README.md, CONTRIBUTING.md, docs/)

This is the foundational step before replacing Docker SDK with
libpod bindings for native Podman support.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-06 19:07:13 -04:00
.circleci Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
.devcontainer Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
.github Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
assets Add subble job ad 2025-10-29 21:56:08 +11:00
docs Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
hooks Added Docker automated build hook and readme badges for Docker 2019-07-02 14:06:44 +02:00
pkg Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
scripts Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
test update demo docker compose project 2022-11-15 19:40:26 +11:00
vendor run go mod vendor 2025-11-14 20:59:29 +11:00
.dockerignore Git commit reference mechanism changed 2019-07-01 15:37:55 +02:00
.gitignore Add networks panel 2023-03-06 01:25:23 +03:00
.golangci.yml Fix types 2025-11-14 21:20:28 +11:00
.goreleaser.yml Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
CLAUDE.md Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
CODE-OF-CONDUCT.md repurpose lazygit code 2019-05-12 10:32:02 +10:00
CONTRIBUTING.md Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
coverage.txt feat(docker): Honor the host specified in current docker context (#464) 2023-10-09 17:13:22 +11:00
docker-compose.yml Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
Dockerfile Upgrade Go version from 1.21 to 1.23 in Dockerfile 2025-11-14 13:32:29 +01:00
go.mod Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
go.sum fix: Update Docker client to support API version 1.52 2025-11-12 08:49:01 +06:00
lazypodman Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
LICENSE repurpose lazygit code 2019-05-12 10:32:02 +10:00
main.go Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
PLAN.md Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
README.md Rename lazydocker to lazypodman (Phase 1) 2026-01-06 19:07:13 -04:00
test.sh test.sh: fix file not being executable 2024-07-15 11:00:44 +02:00

A simple terminal UI for both docker and docker-compose, written in Go with the gocui library.

CI Go Report Card GolangCI GoDoc GitHub repo size GitHub Releases GitHub tag homebrew

Gif

Demo

Sponsors

Maintenance of this project is made possible by all the contributors and sponsors. If you'd like to sponsor this project and have your avatar or company logo appear below click here. 💙

Mark LussierDean HerbertPeter BjorklundReilly WoodOliver GüntherPawan DhananjayBartłomiej DachDavid KarlssonCarsten GehlingCEUKAkos PutzXeteraHolden LucasChau TranmatejciktheAverageDev (Luca Tumedei)Ivan ZaitsevNicholas CloudLightQuantumGabriel SaillardAliaksandr StelmachonakBurgy BenjaminJoe KlemmerTobias LütkeBen BeaumontHollyJames SantucciJeff ForcierMaciej T. NowakFarzad MajidfayyazYuryAndreas KurthBraden SteffaniakJordan GillardSebastianGeorge SpanosFrantisek StankoAndy SlezakMartin KockIllarion KoperskiJesse AlamaCodacyBrettJan HeijmansKevin Nowaldsem pruijsOmar Luq Ethan LiBrian MacAskillMaxinbrJan ZenknerVictor AremuIgor RamazanovElliott Maguiren8n - Workflow Automationkaleb allmonJosh ThomasJJFrederick MorlockDarren CraineMaximilian LangenfeldNurzhanDavis BulsGrec MarcsainuMarc Güell SegarraChris OlsenVladimir PopovNeil LambertShaun GarwoodDavid Heinemeier HanssonWayan jimmy

Elevator Pitch

Minor rant incoming: Something's not working? Maybe a service is down. docker-compose ps. Yep, it's that microservice that's still buggy. No issue, I'll just restart it: docker-compose restart. Okay now let's try again. Oh wait the issue is still there. Hmm. docker-compose ps. Right so the service must have just stopped immediately after starting. I probably would have known that if I was reading the log stream, but there is a lot of clutter in there from other services. I could get the logs for just that one service with docker compose logs --follow myservice but that dies everytime the service dies so I'd need to run that command every time I restart the service. I could alternatively run docker-compose up myservice and in that terminal window if the service is down I could just up it again, but now I've got one service hogging a terminal window even after I no longer care about its logs. I guess when I want to reclaim the terminal realestate I can do ctrl+P,Q, but... wait, that's not working for some reason. Should I use ctrl+C instead? I can't remember if that closes the foreground process or kills the actual service.

What a headache!

Memorising docker commands is hard. Memorising aliases is slightly less hard. Keeping track of your containers across multiple terminal windows is near impossible. What if you had all the information you needed in one terminal window with every common command living one keypress away (and the ability to add custom commands as well). Lazydocker's goal is to make that dream a reality.

Requirements

  • Docker >= 29.0.0 (API >= 1.24)
  • Docker-Compose >= 1.23.2 (optional)

Installation

Homebrew

Normally lazypodman formula can be found in the Homebrew core but we suggest you to tap our formula to get frequently updated one. It works with Linux, too.

Tap:

brew install christophe-duc/lazypodman/lazypodman

Core:

brew install lazypodman

Scoop (Windows)

You can install lazypodman using scoop:

scoop install lazypodman

Chocolatey (Windows)

You can install lazypodman using Chocolatey:

choco install lazypodman

asdf-vm

You can install asdf-lazypodman plugin using asdf-vm:

Setup (Once)

asdf plugin add lazypodman https://github.com/comdotlinux/asdf-lazypodman.git

For Install / Upgrade

asdf list all lazypodman
asdf install lazypodman latest
asdf global lazypodman latest

Binary Release (Linux/OSX/Windows)

You can manually download a binary release from the release page.

Automated install/update, don't forget to always verify what you're piping into bash:

curl https://raw.githubusercontent.com/christophe-duc/lazypodman/master/scripts/install_update_linux.sh | bash

The script installs downloaded binary to $HOME/.local/bin directory by default, but it can be changed by setting DIR environment variable.

Go

Required Go Version >= 1.19

go install github.com/christophe-duc/lazypodman@latest

Required Go version >= 1.8, <= 1.17

go get github.com/christophe-duc/lazypodman

Arch Linux AUR

You can install lazypodman using the AUR by running:

yay -S lazypodman

Docker

Docker Pulls Docker Stars Docker Automated

  1. Click if you have an ARM device

    • If you have a ARM 32 bit v6 architecture

      docker build -t christophe-duc/lazypodman \
      --build-arg BASE_IMAGE_BUILDER=arm32v6/golang \
      --build-arg GOARCH=arm \
      --build-arg GOARM=6 \
      https://github.com/christophe-duc/lazypodman.git
      
    • If you have a ARM 32 bit v7 architecture

      docker build -t christophe-duc/lazypodman \
      --build-arg BASE_IMAGE_BUILDER=arm32v7/golang \
      --build-arg GOARCH=arm \
      --build-arg GOARM=7 \
      https://github.com/christophe-duc/lazypodman.git
      
    • If you have a ARM 64 bit v8 architecture

      docker build -t christophe-duc/lazypodman \
      --build-arg BASE_IMAGE_BUILDER=arm64v8/golang \
      --build-arg GOARCH=arm64 \
      https://github.com/christophe-duc/lazypodman.git
      

  2. Run the container

    docker run --rm -it -v \
    /var/run/docker.sock:/var/run/docker.sock \
    -v /yourpath:/.config/christophe-duc/lazypodman \
    christophe-duc/lazypodman
    
    • Don't forget to change /yourpath to an actual path you created to store lazypodman's config

    • You can also use this docker-compose.yml

    • You might want to create an alias, for example:

      echo "alias lzd='docker run --rm -it -v /var/run/docker.sock:/var/run/docker.sock -v /yourpath/config:/.config/christophe-duc/lazypodman christophe-duc/lazypodman'" >> ~/.zshrc
      

For development, you can build the image using:

git clone https://github.com/christophe-duc/lazypodman.git
cd lazypodman
docker build -t christophe-duc/lazypodman \
    --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
    --build-arg VCS_REF=`git rev-parse --short HEAD` \
    --build-arg VERSION=`git describe --abbrev=0 --tag` \
    .

If you encounter a compatibility issue with Docker bundled binary, try rebuilding the image with the build argument --build-arg DOCKER_VERSION="v$(docker -v | cut -d" " -f3 | rev | cut -c 2- | rev)" so that the bundled docker binary matches your host docker binary version.

Manual

You'll need to install Go

git clone https://github.com/christophe-duc/lazypodman.git
cd lazypodman
go install

You can also use go run main.go to compile and run in one go (pun definitely intended)

Usage

Call lazypodman in your terminal. I personally use this a lot so I've made an alias for it like so:

echo "alias lzd='lazypodman'" >> ~/.zshrc

(you can substitute .zshrc for whatever rc file you're using)

  • Basic video tutorial here.
  • List of keybindings here.

Cool features

everything is one keypress away (or one click away! Mouse support FTW):

  • viewing the state of your docker or docker-compose container environment at a glance
  • viewing logs for a container/service
  • viewing ascii graphs of your containers' metrics so that you can not only feel but also look like a developer
  • customising those graphs to measure nearly any metric you want
  • 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

There is still a lot of work to go! Please check out the contributing guide. For contributor discussion about things not better discussed here in the repo, join the discord channel

Donate

If you would like to support the development of lazypodman, consider sponsoring me (github is matching all donations dollar-for-dollar for 12 months)

Social

If you want to see what I (Jesse) am up to in terms of development, follow me on twitter or watch me program on twitch

FAQ

How do I edit my config?

By opening lazypodman, clicking on the 'project' panel in the top left, and pressing 'o' (or 'e' if your editor is vim). See Config Docs

How do I get text to wrap in my main panel?

In the future I want to make this the default, but for now there are some CPU issues that arise with wrapping. If you want to enable wrapping, use gui.wrapMainPanel: true

How do you select text?

Because we support mouse events, you will need to hold option while dragging the mouse to indicate you're trying to select text rather than click on something. Alternatively you can disable mouse events via the gui.ignoreMouseEvents config value.

Mac Users: See Issue #190 for other options.

Why can't I see my container's logs?

By default we only show logs from the last hour, so that we're not putting too much strain on the machine. This may be why you can't see logs when you first start lazypodman. This can be overwritten in the config's commandTemplates

If you are running lazypodman in Docker container, it is a know bug, that you can't see logs or CPU usage.

Alternatives

  • 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: lazypodman is more about managing existing containers/services, and docui is more about creating and configuring them.
  • Portainer - Portainer tries to solve the same problem but it's accessed via your browser rather than your terminal. It also supports docker swarm.
  • See Awesome Docker list for similar tools to work with Docker.