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
11
12
13
14
15
16
17
main: {
	from_image: "from"
	shell:      "shell"
	hang:       "hang"
	services: {
		db: {
			from_image: "postgres:16"
			shell:      "/bin/sh"
			hang:       "sleep infinity"
		}
		cache: {
			from_image: "redis:7"
			shell:      "/bin/sh"
			hang:       "sleep infinity"
		}
	}
}