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
- Host: GitHub
- URL: https://github.com/mdb/docker-gum
- Owner: mdb
- License: mit
- Created: 2022-09-03T14:02:50.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-03T15:04:18.000Z (almost 4 years ago)
- Last Synced: 2025-01-14T16:36:38.290Z (over 1 year ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```