Show HN: Self-contained Redis server
github.com
Show HN: Self-contained Redis server
1–7 of 7 posts
Re: Show HN: Self-contained Redis server
#2libcontainer explicitly doesn't claim security as a feature, so you aren't getting real security wins by doing this, especially when you can put a static redis process in cgroups and limit it down with SELinux or similar anyways, and the packaging/distribution workflow is pretty much the same as pushing a static redis around.
I feel like I'm missing something; can the author or some other knowledgable soul point out the upsides of packaging a service like this?
Re: Show HN: Self-contained Redis server
#3This is an interesting idea, but if you're shipping all the container code and the image inside the binary, I'm not sure how much you gain over just shipping a precompiled binary of redis itself. At best, you're baking in the config you want, but with the work being done here you could just patch in your desired config options into the redis binary. libcontainer explicitly doesn't claim security as a feature, so you…
Re: Show HN: Self-contained Redis server
#4This is an interesting idea, but if you're shipping all the container code and the image inside the binary, I'm not sure how much you gain over just shipping a precompiled binary of redis itself. At best, you're baking in the config you want, but with the work being done here you could just patch in your desired config options into the redis binary. libcontainer explicitly doesn't claim security as a feature, so you…
agreed - redis is a single binary with minimal dependencies, this seems like so much more work for no gain.
Re: Show HN: Self-contained Redis server
#5Re: Show HN: Self-contained Redis server
#6Earlier quoted context omitted.
agreed - redis is a single binary with minimal dependencies, this seems like so much more work for no gain.
I'm comparing "statically compiled redis" with "statically compiled libcontainer + redis container", which appears to be what this is. I can see a lot of benefits for statically compiling something, redis included, I just don't see what the addition of libcontainer provides.
Re: Show HN: Self-contained Redis server
#7Is Redis not already self contained?