|
|
|
|
|
by amar0c
969 days ago
|
|
I have feeling whole Docker (or application containers) took of when "non Linux people" (read: developers) tried to be sys admins too and failed. Best thing after sliced bread is apps/software packed in single GO binary. Runs everywhere, you only need to rsync/scp it to million of other places and it "acts" (usually) as normal Linux program/daemon |
|
The Go approach is just static linking. Rust often does the same though it’s not always the default like in Go, and you can do the same with C and C++ for all but libc with a bit of makefile hacking.
Statically linking the world is the alternative approach to containers.