encapsule: Run isolated toolbox containers with podman

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Warnings:

This tool (originally based on the toolbox-constrained project) allows running isolated toolbox containers with podman. Mounting of home and host integration are not enabled by default, but one can choose options to do so including capabilities specified in a toml configuration file.


[Skip to Readme]

Properties

Versions 0.3, 0.4
Change log ChangeLog.md
Dependencies base (<5), containers, directory, extra, filepath, process, safe, shell-monad, simple-cmd (>=0.2.3), simple-cmd-args (>=0.1.8), text, toml-reader, unix, xdg-basedir [details]
License Apache-2.0
Copyright 2026 Jens Petersen <juhpetersen@gmail.com>
Author Jens Petersen <juhpetersen@gmail.com>
Maintainer Jens Petersen <juhpetersen@gmail.com>
Category Utility
Home page https://github.com/juhp/encapsule
Bug tracker https://github.com/juhp/encapsule/issues
Source repo head: git clone https://github.com/juhp/encapsule.git
Uploaded by JensPetersen at 2026-07-23T15:00:33Z

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for encapsule-0.4

[back to package description]

encapsule

CLI tool to run developer containers, isolating your home directory and host from container side effects: "encapsules" a project and/or temp home dir together with select "capabilities".

Originally derived from toolbox-constrained tool.

Run a (toolbox) container or image as an isolated podman container. Unlike with toolbox enter, this does not bind-mount your home directory or integrate with the host by default. You can explicitly choose what dir(s) to mount or features to enable, selecting user-configured "capabilities" that the encapsule container can access.

encapsule COMMAND TOOLBOX [options] [CMD...]

if TOOLBOX is a container it will be committed (saved) to an "encapsule" container image from the named toolbox container using buildah.

Usage

$ encapsule --version

0.4

$ encapsule --help

encapsule

Usage: encapsule [--version] COMMAND

  Run a toolbox image in an isolated podman container

Available options:
  -h,--help                Show this help text
  --version                Show version

Available commands:
  list                     List encapsule images and containers
  list-caps                List encapsule images and containers
  rm                       Remove an encapsule container
  rmi                      Remove an encapsule image
  stop                     Stop an encapsule container
  enter                    Connect to a (running) encapsule container
  start                    Create an encapsule container
  run                      Run a temporary encapsule container

run and start commands

These are the 2 main commands: the difference between them is that run starts a temporary encapsule container (removed on exit), whereas start creates and enters a container that is kept (stopped on exit).

$ encapsule run --help

Usage: encapsule run TOOLBOX [-v|--volume HOST:CONTAINER[:opts]]
                     [-e|--env KEY[=VALUE]] [-P|--path DIR] [-i|--init CMD]
                     [--cap NAME] [--home DIR] [-p|--project DIR]
                     [-n|--name NAME] [--readonly] [--no-network] [--no-sudo]
                     [--unique] [--podman-opt OPTION] [--debug] [--dryrun]
                     [--refresh] [CMD]

  Run a temporary encapsule container

Available options:
  -v,--volume HOST:CONTAINER[:opts]
                           Bind mounts (default to selinux :z)
  -e,--env KEY[=VALUE]     Set or pass through an environment variable
  -P,--path DIR            Prepend a directory to PATH inside the container
  -i,--init CMD            A bash snippet run when creating the encapsule
                           container
  --cap NAME               Enable a capability from the config file
  --home DIR               Mount a directory as a writable home (created if
                           missing)
  -p,--project DIR         Mount a (project) directory as workdir
  -n,--name NAME           Optional container name (prefix with '^' prefix to
                           skip 'encapsule-' prefix)
  --readonly               Make the encapsule container filesystem read-only
  --no-network             Disable network access
  --no-sudo                Skip passwordless sudo setup
  --unique                 Run a new encapsule container even if one is already
                           running
  --podman-opt OPTION      Pass an option directly to podman
  --debug                  Show debug output
  --dryrun                 Print the podman command instead of running it
  --refresh                Force re-commit of the toolbox image
  -h,--help                Show this help text

Examples

# Temporary isolated shell without host fs access
$ encapsule run my-toolbox

# Mount current (project) directory in / and set it as the working directory
# (also names the container after the project, e.g. encapsule-my-toolbox-myproject)
$ encapsule start my-toolbox -p .

# Bind mount a volume
$ encapsule run my-toolbox -v ~/data:/data

# Mount a temp "home" directory (created if it doesn't exist)
$ encapsule run my-toolbox --home /tmp/somedir

# Use capabilities from config
$ encapsule start my-toolbox --cap ssh --cap git

# Read-only container filesystem
$ encapsule run my-toolbox --readonly

# Remove encapsule container
$ encapsule rm my-toolbox

# Set environment variables and prepend to PATH
$ encapsule run my-toolbox -e MY_VAR=hello -P ~/.local/bin

# Run a specific command
$ encapsule run my-toolbox -- ls /

# Dry run: print the full podman command without running it
$ encapsule run --dryrun my-toolbox

# run directly from an image
$ encapsule run fedora:44 --home tmphome

Note the saved image will be reused next time unless using --refresh.

Capabilities

Capabilities define reusable groups of volumes, environment variables, PATH entries, and init commands in ~/.config/encapsule/config.toml:

[capabilities.ssh]
volumes = ["~/.ssh:~/.ssh:ro"]

[capabilities.git]
volumes = ["~/.gitconfig:ro"]

[capabilities.wayland]
env = ["WAYLAND_DISPLAY", "XDG_RUNTIME_DIR"]
volumes = ["$XDG_RUNTIME_DIR/$WAYLAND_DISPLAY"]
security_opts = ["label=disable"]

[capabilities.rust]
path = ["~/.cargo/bin"]

Each capability can define:

~ and envvars are expanded in volume and path specs. If the host and container paths are the same, you can use the shorthand PATH[:opts] instead of PATH:PATH[:opts].

How it works

  1. Commits the named toolbox container to an encapsule image using buildah commit (reuses the existing image unless --refresh is passed)
  2. Runs podman run with --userns=keep-id so you are your own user, not root
  3. Tries to install runuser (util-linux) and sudo if they are missing with dnf or apt-get.
  4. Sets up passwordless sudo inside the encapsule container (unless --no-sudo)
  5. Bind mounts get SELinux :z (shared) labels automatically, so multiple containers can safely access the same directories
  6. When -p/--project DIR is used (and --name isn't), the container name includes the project directory's name (e.g. encapsule-mytoolbox-myproject), so you can run the same toolbox against different projects at the same time in separate encapsule containers

Installation

A copr repo is available for Fedora and Epel 10:

https://copr.fedorainfracloud.org/coprs/petersen/encapsule/

Building from source

Install cabal-install and ghc.

cabal install

(or to build the latest release: cabal install encapsule)

Build with stack

Alternatively you can build with:

stack install

Runtime Requirements

I already mentioned toolbox-constrained from which the initial code was derived.

There is also similarly schupfn which uses QEMU to run a toolbox container image in a VM with a direct private ssh connection.

For stronger sandboxing and isolation, specially network, consider using OpenShell. At some point this project might move to wrapping openshell possibly.

Disclaimer

The simple isolation provided is limited best effort and comes with no (security) warranty. Please use this tool at your own risk.

Reports, suggests, and contributions to improve the tool are very welcome.

Contribute

encapsule is at https://github.com/juhp/encapsule and distributed under the Apache-2.0 license.