├── .github ├── renovate.json5 └── workflows │ └── build.yaml ├── .gitignore ├── Containerfile ├── Justfile ├── LICENSE ├── README.md ├── cosign.pub └── files ├── home.mount ├── root.mount ├── snap.mount └── tmpfiles-snap.conf /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/.gitignore -------------------------------------------------------------------------------- /Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/Containerfile -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/README.md -------------------------------------------------------------------------------- /cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/cosign.pub -------------------------------------------------------------------------------- /files/home.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/files/home.mount -------------------------------------------------------------------------------- /files/root.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/files/root.mount -------------------------------------------------------------------------------- /files/snap.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/files/snap.mount -------------------------------------------------------------------------------- /files/tmpfiles-snap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootcrew/ubuntu-bootc/HEAD/files/tmpfiles-snap.conf --------------------------------------------------------------------------------