mirror of
https://github.com/Noratrieb/captain.git
synced 2026-01-14 06:25:02 +01:00
13 lines
241 B
Bash
Executable file
13 lines
241 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 \
|
|
/bin/quarterdeck
|