mirror of
https://github.com/marcoallegretti/karapace.git
synced 2026-03-26 21:43:09 +00:00
- examples/minimal.toml — bare openSUSE system - examples/dev.toml — developer tools (git, vim, tmux, gcc, clang) - examples/gui-dev.toml — GUI development with GPU + audio passthrough - examples/ubuntu-dev.toml — Ubuntu-based with Node.js, Python, build-essential - examples/rust-dev.toml — Rust development environment - data/dbus/org.karapace.Manager1.service — D-Bus service activation file - data/systemd/karapace-dbus.service — hardened systemd user unit
19 lines
428 B
TOML
19 lines
428 B
TOML
# Ubuntu-based developer environment — for teams requiring Ubuntu toolchains.
|
|
#
|
|
# Usage:
|
|
# karapace build examples/ubuntu-dev.toml
|
|
# karapace enter <env_id>
|
|
|
|
manifest_version = 1
|
|
|
|
[base]
|
|
image = "ubuntu/24.04" # Ubuntu Noble Numbat
|
|
|
|
[system]
|
|
packages = ["git", "curl", "build-essential", "cmake", "python3", "python3-pip", "nodejs", "npm"]
|
|
|
|
[mounts]
|
|
workspace = "~/projects:/workspace"
|
|
|
|
[runtime]
|
|
backend = "namespace"
|