A simple CLI that helps you to create containers using podman.
Start creating a json file like this:
[
{
"name": "hello-world",
"image": "docker.io/library/hello-world:latest",
"env": [
["TZ", "Etc/UTC"]
],
"volumes": [
["/my_machine/dir", "/container/dir"]
],
"ports": [
[8080, 80, "tcp"]
]
}
]
- This is an ilustractive example.
To create the container execute the box create
command:
box create <YOUR_FILE>.json
- All others commands are used like this,
box command <YOUR_FILE>.json [CONTAINER]
, use thehelp
command for more info.