Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 1023 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 1023 Bytes

Readme

Rootless chromium with FIDO U2f / WebAuthn and sound

  1. Set up /etc/sub{u,g}id

    ([[ ! -f /etc/subuid ]] && [[ ! -f /etc/subgid ]]) \
        && printf "%s:1000000:65536\n" "$(whoami)" \
        | tee /etc/subgid >/etc/subuid
  2. Install the seccomp profile

    install -o "$(id -u)" -g "$(id -g)" -m 0700 -d "${HOME}/.config/containers"
    install ./chromium/chrome.json "${HOME}/.config/containers/chrome.json"
  3. Build and run the image

    make chromium
  4. Profit!

Acknowledgments

Special thanks to Jessie Frazelle for the original impetus and the chrome.json seccomp profile.