shell-cell 1.6.3

Shell-Cell. CLI app to spawn and manage containerized shell environments
1
2
3
4
5
6
7
8
9
10
main: {
	// Base Docker registry image to build on top of
	from_image: "debian:bookworm"
	// Working directory inside the image
	workspace: "/my_project"
	// Shell binary used for interactive sessions
	shell: "/bin/bash"
	// Keeps the container alive as a persistent background server
	hang: "while true; do sleep 3600; done"
}