shell-cell 1.6.2

Shell-Cell. CLI app to spawn and manage containerized shell environments
1
2
3
4
5
6
7
8
9
10
11
12
13
14
main: {
	from_docker: "Dockerfile"
	workspace:   "/app"
	shell:       "/bin/bash"
	hang:        "python3 -m http.server 4322"
	config: {
		mounts: [
			"./mount-source:/app/mnt",
		]
		ports: [
			"4322:4322",
		]
	}
}