Skip to content

Releases: jesseduffield/lazydocker

v0.23.1

13 Oct 07:45
Compare
Choose a tag to compare

Changelog

  • e860416 Gracefully check for docker config
  • 8976f10 Merge pull request #489 from jesseduffield/graceful-dir-check
  • 1060e17 Updated README.md

v0.23.0

11 Oct 10:59
cce9d40
Compare
Choose a tag to compare

The important part of this release is that we now honour the host specified in the current docker context (courtesy of @rajiv-k !).

But thanks to all contributors who helped with this release!

Apologies for taking so long to cut new releases with lazydocker. I really do want to spend more time on this project but lazygit consumes pretty much all of my free time. I've got a PR in the works for changing things like timestamps/wrap/autoscroll/etc when viewing logs but it's in limbo until I find the time to get back to it.

Changelog

Features

Translations

Maintenance

v0.21.1

03 Aug 10:46
Compare
Choose a tag to compare

Changelog

v0.21.0

21 Jul 09:19
Compare
Choose a tag to compare

Lots of good stuff in this release. Special shoutout to @Tony-Sol for adding the networks view!

What's Changed

New Contributors

Full Changelog: v0.20.0...v0.21.0

v0.20.0

12 Nov 04:34
Compare
Choose a tag to compare

Features:

  • List panel filtering with the '/' key #392
  • French keybindings #383 (thanks @clemsau!)
  • Allow upping a service with the 'u' key #377

Bug fixes:

  • Fix port flickering #390

Dev Experience:

  • Ensure cheatsheet is up to date when running CI against a PR #374 (thanks @gusandrioli!)

v0.19.0

13 Oct 01:14
26858c3
Compare
Choose a tag to compare

Changelog

Features:

  • #372 ports are displayed in the containers and services panels
  • #317 (@mark2185 ) support for docker pause command via 'p' key
  • #346 ability to start shell from services panel via 'E' key
  • #372 the current window can be expanded to take up half the screen or the full screen using the '+' and '_' keys (like in lazygit)
  • #366 (@miles170 ) string replacements for image names. For example:
replacements:
  imageNamePrefixes:
    '123456789012.dkr.ecr.us-east-1.amazonaws.com': '<prod>'
    '923456789999.dkr.ecr.us-east-1.amazonaws.com': '<dev>'

This prevents the image name column from being ridiculously long.

  • #372 use blue background colour on selected line for better visibility
  • #367 (@blennster ) support for tab and backtab navigation
  • #342 view container (in stdout) logs via SDK rather than via docker binary
  • #375 improve sorting of volumes to show named volumes at the top
  • #352 (@ rmtsrc ) image name included in config tab

Bug fixes:

  • #372 fixed some focus-related issues
  • #362 (@tilliwilli ) fixes bug where text was white in light themes

Maintenance:

  • #358 (@Syriiin ) updated FAQ to include steps for docker compose V2 usage
  • #373 (@gusandrioli ) keybinding cheatsheets are now marked as auto-generated to reduce confusion when people want to update the cheatsheets.
  • #355 (@DasFaultier ) improved install script
  • #356 extracted process kill logic for use in lazygit
  • #368 fixed linting errors

v0.18.1

11 May 12:18
da650f4
Compare
Choose a tag to compare

Changelog

  • minor fix from v 0.18 where TTY containers were not showing their logs

v0.18

11 May 11:00
76fdbd1
Compare
Choose a tag to compare

v0.18 Changes

  • If you didn't see the release notes from v0.17.1, know that CPU usage is now well under control. If you ever experience high CPU while using lazydocker, please raise an issue.
  • When docker is not running, we now wait for it to start up instead of crashing
  • fixed issue where container CPU was reported lower than expected (sometimes at zero percent)
  • Less reliance on docker binary (though we're not quite ready to do away with the binary entirely). This makes for noticeably faster loading of container logs
  • Updated rendering libary (gocui) includes various bug fixes, supports more terminals (e.g. alacritty), and notably introduces scrollbars! (that you cannot interact with that but are nice regardless)
  • We are now sorting images by name for easier browsing
  • You can now force remove images (with an admittedly clunky UI for now)
  • You can now start (as opposed to restart) a service with shift+S
  • Fixed bug where toggling the hiding of stopped containers did not immediately apply
  • version info is now built in upon doing go install meaning fewer users should encountered the 'unversioned' version at the bottom left of the screen (instead they'll see the git commit hash)
  • Fixed the Dockerfile to support go 1.18
  • Performance improvements

Changed defaults

We now wrap content in the main panel by default. You can restore the old behaviour with:

gui:
  wrapMainPanel: false

Timestamps in container logs are no longer shown by default. You can restore them with:

logs:
  timestamps: false

Now that we're using the docker SDK (rather than binary) for viewing container logs, the commandTemplates.containerLogs is now longer recognised. Instead you can configure logging like so:

logs:
  timestamps: false
  since: '60m'

A notable exception to this is that if you press 'm' to view logs on a container we'll still use the binary. That'll also be switched to using the SDK (meaning the above config options will apply to that too) in a future relase.

Note from maintainer

I've closed off quite a few issues as having been resolved, and the issues that remain are surprisingly do-able. Many wanted features like searching in the main panel and resizing panels are already solved problems in lazygit and can be easily ported over.

So, if you're looking for some open source work, or just want to see your desired feature in lazydocker, consider picking up an issue. I'll be happy to give pointers.

As always, thanks to the contributors who help out in the repo and thanks to all my sponsors. If you'd like to support lazydocker's development, please consider sponsoring me by clicking the sponsor button at the top of this page. Every bit helps!

v0.17.1

09 May 12:31
Compare
Choose a tag to compare

They say a picture is worth a thousand words. Here's two thousand words for your viewing pleasure:

Before:
image

After:
image

Changes:

  • CPU usage should now be under control (idles at 1-2% CPU on my machine compared to 100% before). There's more room for improvement but this is a great start.
  • There's a new tab in the main view for viewing a container's environment variables (thanks @glendsoza)
  • Containers are now sorted by status (you can restore the old sorting logic with gui.legacySortContainers: true in your config (thanks @lpessoa)
  • No more anonymous reporting popup because we stopped doing telemetry ages ago

Contributor changes

  • We're now on go 1.18 meaning generics are a go
  • we're now using github actions rather than circle CI

Note from maintainer

Since the dawn of this app, crazy CPU usage has been an embarrassing issue. By happenstance my friend @ed-bassett told me 'Jesse you really need to fix Lazydocker's CPU issues. Did you know you can use Docker's event stream to avoid polling for changes?' Long story short that was a much easier change that I expected, and I can't believe it took me so long to get around to it!

If anybody's been paying attention to Lazydocker's sibling repo Lazygit they'll know that I spend far more of my time over there, meaning things move slower over here. With that said, I'm trying to find ways of dedicating more time to both repos. If you want to support my open source work please consider sponsoring me via the sponsor button at the top of this page. Every bit helps! Thanks to all who have supported me so far.

v0.17

09 May 12:25
Compare
Choose a tag to compare

Changelog