mirror of
https://github.com/Noratrieb/captain.git
synced 2026-01-14 06:25:02 +01:00
15 lines
269 B
Bash
Executable file
15 lines
269 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
exec bwrap \
|
|
--bind ./ahoy/rootfs / \
|
|
--proc /proc \
|
|
--dev /dev \
|
|
--unshare-user \
|
|
--unshare-ipc \
|
|
--unshare-pid \
|
|
--unshare-uts \
|
|
--unshare-cgroup \
|
|
--as-pid-1 \
|
|
--uid 1 \
|
|
--gid 1 \
|
|
/bin/quarterdeck
|