An open API service indexing awesome lists of open source software.

https://github.com/mdb/docker-gum

A gum Docker image with a shell
https://github.com/mdb/docker-gum

Last synced: 3 months ago
JSON representation

A gum Docker image with a shell

Awesome Lists containing this project

README

          

# docker-gum

A `clapclapexcitement/gum` version of [gum](https://github.com/charmbracelet/gum), but with a shell.

Because `clapclapexcitement/gum` has a shell, you can use it to run shell scripts containing `gum` commands like...

```
echo "gum input --placeholder \"What's your name?\"" > gum.sh

chmod +x gum.sh

docker run \
--tty \
--rm \
--interactive \
--volume "$$PWD:/src" \
--workdir "/src" \
--entrypoint hello.sh \
clapclapexcitement/gum
```