A portable containerized shell
Project description
Kitt
Kitt is a container based portable shell environment.
Build, push and distribute your shell, with your tools, and your config, anywhere.
Installation
➜ pip install kitt-shell
.. or just run kitt.py
from sources.
Dependencies
Kitt is based on python3 and Docker.
How to use Kitt
Fill a configuration file (see examples folder) either in toml
or json
format.
Feed it to Kitt and let the magic happend !
➜ kitt build examples/devops.conf devops
✓ Build success !
➜ kitt run devops
user@kitt:~#
Not your computer but you need your tools ? No problem.
➜ kitt pull senges/kitt devops
✓ Image devops pull done
➜ kitt run devops
user@kitt:~#
Few commands workflow examples are available in examples folder.
Kitt CLI reference
➜ kitt --help
Usage: kitt [OPTIONS] COMMAND [ARGS]...
main command group
Options:
-h, --help Show this message and exit.
-d, --debug Debug mode
Commands:
build Build image from source config file
inspect Show image metadata
list List local images
patch Patch image runtime metadata
prune Prune local images
pull Pull image and exit
push Push kitt image to registry
refresh Pull latest version of local images
remove Remove local image
run Run kitt shell
version Show version
Configuration
Basics
[options]
docker_in_docker = false # Share docker socket
forward_x11 = false # Configure x11 forward
[workspace]
image = "ubuntu:22.04" # OCI System Image
tools = [] # Nix tools
user = "user" # Username inside container
hostname = "kitt" # Container hostname
default_shell = "bash" # One of bash, zsh, sh, dash
# [[workspace.envs]] # Container exported ENV (multiple)
# name = ""
# value = ""
# [[workspace.volumes]] # Container bind volumes (multiple)
# host = "" # Local directory
# bind = "" # Bin inside container
# mode = "" # Mode (default is 'rw')
# [secrets]
# [[secrets.files]] # File entry (multiple)
# src = "" # Host path
# dest = "" # Container path
# [[secrets.envs]] # Env variable (multiple)
# name = "" # Variable name
# value = "" # Secret value
For more details about Nix tools, see tools installation section.
Secrets
Kitt is able to embed password encrypted secrets (files and env vars) inside an image.
A password prompt will be shown at container runtime to decrypt and restore the secrets :
- Env vars are loaded inside the container
- Files are restored insed a tempFS destoyed at container exit
Warning
Kitt vault uses SHA256(password) as AES encryption key. Use with caution, weak password could lead to sensitive information leak.
Plugins
Kitt offers multiple optional plugins to improve environment customization.
Plugin | Description | Requires |
---|---|---|
zsh | install and setup Zsh (oh-my-zsh) | |
copy | copy local files inside container | |
download | download ressources inside container | wget |
git | clone git repository inside container | git |
pip | install pip package | pip |
See PLUGINS.md for configuration details.
Need another plugin ?
Add jinja formated plugin inside kitt/static/plugins
folder and use it in your config file under the same name.
How does it work ?
Kitt will build an OCI Container Image (compatible with Docker, Podman, ...), according to the provided configuration file. It will install requested tools inside, setup your desired shell(s), shortcuts, completion, plugins, and add your configuration files.
At runtime, Kitt will create a container from this image, spawn a shell inside and attach it to your current TTY.
Tools installation
For the tool installation part, Kitt relies on the huge 80k+ packages NixOS Store. It does provide an uniform OS agnostic way of installing tools inside containers, and can be extended if necessary.
Thanks to Nix, you can effortlessly change your base image OS, anytime.
Containerization
At first, kitt was meant to run with Podman as it is rootless by design (which solves uig/gid mapping problems).
However, for multiple reasons, it should now mainly run with Docker. Podman support is in progress, see branchfeat/podman
.
What is UID/GID reflexion ?
TL;DR: It's great for shared folders file rigths.
Kitt uses fixuid project to reflect host user UID/GID inside the container. What does that means ?
As Docker containers run as root (except rootless ones, but still), if you have a shared volume between your host and container, files created inside the container will be owned by root on the host. This mecanism makes working with volumes for user owned files very unconvenient.
With fixuid
, the user inside the container will have the exact same real uid
as your current host user. So if you bind a directory (your home
for example), any file created by the user inside the container will be own by your user on the host side instead of root.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file kitt-shell-0.8.5.tar.gz
.
File metadata
- Download URL: kitt-shell-0.8.5.tar.gz
- Upload date:
- Size: 29.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d0f3880e62f92a106e9e8327a6c315069106d20d6b20431a51dcfe533fd1faa |
|
MD5 | 54f70883f6e0d999d0dd1408afc056b5 |
|
BLAKE2b-256 | 41662afa5a39a711264be734b5f901b8be5609b6a48f98bfe6c4a39848c103c6 |
File details
Details for the file kitt_shell-0.8.5-py3-none-any.whl
.
File metadata
- Download URL: kitt_shell-0.8.5-py3-none-any.whl
- Upload date:
- Size: 30.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8f8d00dce5a4994eba2d50af027c5ee44d084bc4f28bf2deca20d1afa7a2735 |
|
MD5 | 2819167009d47b3817790cf35b71f337 |
|
BLAKE2b-256 | ebe5e50b23da93e52947b1f32ddd11ac6dd5fa717e7bfa9eafb6879b635425e7 |