Remix.run Logo
inoffensivename 6 days ago

Can I get it in a Docker container?

p0w3n3d 6 days ago | parent | next [-]

It would be like having `ls` in a container

esafak 5 days ago | parent [-]

The joke has to be more accessible to land ;)

kqr 6 days ago | parent | prev | next [-]

I think this is one of the cases where Nix would be easier. To try it out without polluting your global namespace, nix run nixpkgs#mc.

EbNar 6 days ago | parent | prev | next [-]

I guess so, but what would be the use case for it?

sira04 6 days ago | parent | prev | next [-]

  docker run --rm -it -v "$(pwd):$(pwd)" -w "$(pwd)" nixery.dev/mc mc
Vaslo 6 days ago | parent | prev | next [-]

I have it in a Docker container in UnRaid to move all my Media around. It’s great.

batrat 6 days ago | parent | prev | next [-]

why bother? I use mine in my AI powered, headless, kubernetes cluster

balamatom 6 days ago | parent | prev | next [-]

Yes. Probably even a distroless one.

serf 6 days ago | parent | prev | next [-]

unraid has a docker container for Krusader - same thing different flavor, why not.

BlaDeKke 6 days ago | parent | prev | next [-]

This is not a chat client.

qalmakka 6 days ago | parent | prev [-]

Lol. Realistically speaking, you'd have to bind mount your entire home for it to be usable then

fulafel 6 days ago | parent [-]

Maybe you're just looking to shell around in your container deployed in a pod somewhere.

jalk 6 days ago | parent [-]

That should be doable with `kubectl debug ...` - e.g. attach an ephemeral sidecar container with mc to already running pod. And you would ofc. configure that in K9S as a plugin to easily launch it :)