diff options
author | John Turner <jturner.usa@gmail.com> | 2025-08-27 00:40:36 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-08-27 00:40:36 -0400 |
commit | b5e49151e2d5b0d5bf1d977581dbcc6cb2650b15 (patch) | |
tree | 19c2ac5b8007a08a0a6456dc9b79726694389c9b | |
parent | 56aa384c497deb9866d320a98b7cfb28ff4db2c9 (diff) | |
download | website-b5e49151e2d5b0d5bf1d977581dbcc6cb2650b15.tar.gz |
align bwrap parameters
-rw-r--r-- | blog/access-control.org | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/blog/access-control.org b/blog/access-control.org index c983ec3..620678a 100644 --- a/blog/access-control.org +++ b/blog/access-control.org @@ -44,17 +44,17 @@ Let's see an example of how we actually do this: args=( --unshare-all --share-net - --dev /dev - --proc /proc + --dev /dev + --proc /proc --tmpfs /tmp --tmpfs /run --tmpfs /var --tmpfs /mnt/sandbox --ro-bind /etc/ld.so.cache /etc/ld.so.cache - --ro-bind /usr /usr - --ro-bind /bin /bin + --ro-bind /usr /usr + --ro-bind /bin /bin --ro-bind /sbin/ /sbin - --ro-bind /lib /lib + --ro-bind /lib /lib ) # handle lib32 and lib64 for some systems |