Y
Hacker News
new
|
ask
|
show
|
jobs
by
inoffensivename
282 days ago
Can I get it in a Docker container?
10 comments
p0w3n3d
282 days ago
It would be like having `ls` in a container
link
esafak
282 days ago
The joke has to be more accessible to land ;)
link
kqr
282 days ago
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.
link
EbNar
282 days ago
I guess so, but what would be the use case for it?
link
sira04
282 days ago
docker run --rm -it -v "$(pwd):$(pwd)" -w "$(pwd)" nixery.dev/mc mc
link
Vaslo
282 days ago
I have it in a Docker container in UnRaid to move all my Media around. It’s great.
link
batrat
282 days ago
why bother? I use mine in my AI powered, headless, kubernetes cluster
link
balamatom
282 days ago
Yes. Probably even a distroless one.
link
serf
282 days ago
unraid has a docker container for Krusader - same thing different flavor, why not.
link
BlaDeKke
282 days ago
This is not a chat client.
link
qalmakka
282 days ago
Lol. Realistically speaking, you'd have to bind mount your entire home for it to be usable then
link
fulafel
282 days ago
Maybe you're just looking to shell around in your container deployed in a pod somewhere.
link
jalk
282 days ago
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 :)
link