This commit is contained in:
Jason Swank
2023-03-16 12:21:36 -04:00
parent c14c57e182
commit ac6aa468f5
5 changed files with 49 additions and 32 deletions

View File

@@ -7,11 +7,29 @@ images.
## Quickstart
```console
$ docker run -ti --rm ghcr.io/jswank/alpine-cli
~ $ ^D
exit
$ just
docker run -ti --rm ghcr.io/jswank/alpine-cli
~ $ ^D
exit
```
A script, using [casey/just](https://github.com/casey/just') is in [bin/cli](bin/cli).
It can be used to quickly start an ephemeral (or persistent) container:
```console
bin/cli
~ $ ^D
exit
bin/cli persist
~ $ ls
~ $
exit
podman cp foo.json alpine-cli:/home/cli
bin/cli persist
~ $ ls
foo.json
~ $
exit
```