dXon¶
dXon is a lightweight development container manager. instead of installing language toolchains and project dependencies directly on your host system, you create isolated containers for them. keeps things clean and reproducible.
it wraps system tools like systemd-nspawn, pacstrap, debootstrap, and Alpine's rootfs setup — no reinventing the wheel here, just making containers easier to use for everyday dev workflows.
quick example¶
create a Node.js container from a template:
enter it:
list all containers:
delete one when you're done:
that's the core workflow. the Usage page covers all commands in detail.
how it works¶
when you create a container, dXon:
- bootstraps a base Linux environment (Arch, Debian, or Alpine)
- installs packages defined by the template
- runs setup steps inside the container
- stores everything under
~/.dxon/containers/
from there you can enter the container any time with dxon enter.
next steps¶
- Installation — get dXon on your system
- Usage — full CLI reference
- Templates — understand and write templates
- Registry — community template registry
- Configuration — configure dXon to your liking
- Security — how template trust works