💾 Archived View for dioskouroi.xyz › thread › 29400741 captured on 2021-12-05 at 23:47:19. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-12-04)

🚧 View Differences

-=-=-=-=-=-=-

Lazydocker: The lazier way to manage everything Docker

Author: thunderbong

Score: 257

Comments: 17

Date: 2021-12-01 04:41:04

Web Link

________________________________________________________________________________

jckahn wrote at 2021-12-01 13:50:54:

I use this, as well as lazygit and lazynpm (from the same developer) throughout every single day. They each live in their own tmux window. These are indispensable programs for me and I’m so glad they exist!

PikachuEXE wrote at 2021-12-02 01:45:47:

I just realize a Ruby library lazy_migrate I have been using is created by the same guy

https://github.com/jesseduffield/lazy_migrate

Wow moment

password4321 wrote at 2021-12-01 15:14:38:

lazygit yesterday:

https://news.ycombinator.com/item?id=29394162

(130+ comments)

0x008 wrote at 2021-12-01 10:11:38:

The Visual Studio Code Docker Extension exposes a similar Interface. I can also really recommend it for vs code users.

DougBTX wrote at 2021-12-01 07:08:46:

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

Why is that? Any chance of a bugfix?

kobalsky wrote at 2021-12-01 14:26:27:

What I did was:

while true; do docker-compose logs --tail=100 -f myservice; sleep 1; done

status_quo69 wrote at 2021-12-01 16:22:12:

You can also achieve this with watch

louis-lau wrote at 2021-12-01 14:35:21:

You would have to ask the folks behind docker-compose.

sciurus wrote at 2021-12-01 14:20:45:

At a glance this reminds me of the k9s tui for kubernetes, which is really quite nice.

https://k9scli.io/

vimsee wrote at 2021-12-01 09:57:06:

Glancing at the demo I must say that it looks really neat.

Really like terminal apps because of the easy access over network. This one might come off really handy because I often find myself ssh`ing in to my server to read logs and manage docker containers.

kishansh wrote at 2021-12-01 04:51:47:

Amazing! Just what I need to get on with my docker life.. Thanks for making this!

swader999 wrote at 2021-12-01 17:36:52:

So does this mean I can finally get rid of docker desktop?

flemhans wrote at 2021-12-01 09:55:20:

I want this for podman.

boudin wrote at 2021-12-01 10:52:07:

I cannot test as I had to go back to using Docker since I have issues with podman and docker-compose, but you might want to give it a try. It might work out of the box if you start the podman daemon that exposes docker APIs.

If you already do but run the service as a user, you might need to set the env var to

DOCKER_HOST to unix://$XDG_RUNTIME_DIR/podman/podman.sock first

busymom0 wrote at 2021-12-01 12:34:47:

We used docker as part of our capstone project in university back in 2012. We basically created tor based web hosting services where each website would be hosted in its own docker container.

It’s good to see docker coming such a long way since then.

zeckalpha wrote at 2021-12-01 22:40:38:

Docker wasn’t released publicly until 2013

busymom0 wrote at 2021-12-01 22:42:58:

You are probably right. It might have been 2013 then. It's been a while.