Skip to content

Releases: ajayd-san/gomanagedocker

v1.4 release - Bob the builder 🛠️

18 Aug 14:11
Compare
Choose a tag to compare

Overview

  • Build images directly in the TUI using b, this needs a Dockerfile to be present in the current directory (with sick progress bar animations, so that you look cooler).
  • View live logs by pressing L on a running container (true hackerman mode 👩‍💻).
  • Select multiple items and perform operations in bulk mode (Huge time saver frfr).
  • Run image now takes arguments like image name, port mappings, env vars (and more coming soon!).

QOL

  • almost all operations are now run asynchronously, this will make sure the TUI doesn't freeze if an operation takes a while to complete.
  • Tab-specific notification system to get instant feedback and reports (for instance, the number of images pruned when you perform prune)

What's Changed

New Contributors

Full Changelog: v1.3.2...v1.4

v1.3.2 patch 📏

20 Jul 23:21
Compare
Choose a tag to compare

This patch greatly improves the resizing of the TUI 📏.

For info check PR: #27

Fixes issue #21.

Full Changelog: v1.3.1...v1.3.2

v1.3.1-hotfix

20 Jul 17:25
Compare
Choose a tag to compare

Quick hotfix (honestly took longer than expected) to fix #18 .

What's Changed

New Contributors

Full Changelog: v1.3...v1.3.1

v1.3 release 🎉

16 Jul 18:17
3264acc
Compare
Choose a tag to compare

What's Changed

New Features

  • You can now run and exec into an image directly from the image tab (Cuz you are a busy human🏃💨) (press x in the 'Images' tab)
  • You can now copy an object ID to your clipboard 📝 (press c)

QOL changes

  • You can now directly see polling time while browsing lists 📻.
  • No items text is not rendered twice when there are no items in the current tab.
  • List and info-box width now adjust dynamically depending on the size of the screen 📐.
  • Pressing exec key on a empty container list, will not crash anymore 💣 ❌.
  • List names are now rendered smartly, this causes UI to not break when a name is way too long.
  • Fixed an issue where calling prune volumes does not highlight the default dialog option by default .
  • Tests, tests, tests and more tests!, so you know this tool is reliable 🧑‍🔬.

v1.2 release 🎉

24 Jun 11:14
Compare
Choose a tag to compare

What's Changed

  • Config file support has been added 🗒️
    • Set custom polling time in config.
    • Reorder and exclude tabs in config.
  • docker scout command now gets canceled when the user quits the scout infobox preemptively while the report is still being generated ( avoiding potentially large memory usage depending on the image 🤑 )

Quality of Life Improvements

  • More descriptive prompts while pruning volumes
  • Container info box now displays the name of the image used 🧑‍🔬
  • gmd is now a CLI and has flags (Useful when checking for version info and debugging 🐞 )

Full Changelog: v1.1.1...v1.2

v1.1.1 docker scout output now displays correctly

14 Jun 06:55
Compare
Choose a tag to compare
  • Small patch fix where docker scout now shows the Image tag of the image being queried instead of image ID.

v1.1 release 🎉

13 Jun 11:56
Compare
Choose a tag to compare

What's Changed

  • Added docker scout quickview functionality
  • Program now tries to ping docker daemon before doing anything else with the docker API, this mitigates panics when users do not have docker installed or when they are not a part of the docker group on UNIX systems.
  • chore: fix typos and style by @ccoVeille in #2

New Contributors