TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Does FireJail reduce the need for Docker?

2 pointsby notsonyabout 10 years ago
https:&#x2F;&#x2F;l3net.wordpress.com&#x2F;projects&#x2F;firejail&#x2F;<p>Firejail is a SUID sandbox program that reduces the risk of security breaches by restricting the running environment of untrusted applications using Linux namespaces, seccomp-bpf and Linux capabilities. It allows a process and all its descendants to have their own private view of the globally shared kernel resources, such as the network stack, process table, mount table. Firejail can work in a SELinux or AppArmor environment, and it is integrated with Linux Control Groups.<p>$ firejail firefox # starting Mozilla Firefox<p>$ firejail transmission-gtk # starting Transmission BitTorrent<p>$ firejail vlc # starting VideoLAN Client<p>$ sudo firejail &quot;&#x2F;etc&#x2F;init.d&#x2F;nginx start &amp;&amp; sleep inf&quot;

2 comments

gmusleraabout 10 years ago
Look a lot like containers. But docker is a bit more than that, the first that jumped to my attention is what is related to filesystem (layered images, repositories, CoW image+running container fs, volumes) seem to be missing. It runs everything in the normal filesystem by default?<p>The ecosystem build around it (compose, kubernetes, weave, machine, swarm, etc) will be missing too.<p>Its desktop app focus made me remember of <a href="http:&#x2F;&#x2F;subuser.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;subuser.org&#x2F;</a> that is docker based, but maybe it have less requirements.<p>But is another voice in the container space, and could be more fitting than other alternatives for some use cases.
twundeabout 10 years ago
It looks like more of a complement to docker than an alternative. Docker does a good job of making apps&#x2F;services deployable without really having to care about the infrastructure underneath. One of Docker&#x27;s current issues is a lack of security (a security breach in one container can be exploited to access other containers on the same machine since containers share resources with each other)<p>If I&#x27;m reading the documentation correctly, this doesn&#x27;t do virtualization ala freebsd jails or true containers but is more like a chroot jail, which grants a locked-down view of a filesystem