Skip to content

A minimal Alpine-based Docker image with essential CLI tools for scripting and automation.

Notifications You must be signed in to change notification settings

seillama-io/cli-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

CLI Tools

A minimal Alpine-based Docker image with essential CLI tools for scripting and automation.

Included Tools

  • bash - Bourne Again SHell
  • curl - Command-line tool for transferring data with URLs
  • jq - Command-line JSON processor

Usage

Pull from GitHub Container Registry

docker pull ghcr.io/seillama-io/cli-tools:latest

Run interactively

docker run -it --rm ghcr.io/seillama-io/cli-tools:latest

Run a command

docker run --rm ghcr.io/seillama-io/cli-tools:latest bash -c "curl -s https://api.github.com/repos/docker/docker | jq .stargazers_count"

Use in scripts

docker run --rm -v $(pwd):/workspace ghcr.io/seillama-io/cli-tools:latest bash /workspace/your-script.sh

Building Locally

docker build -t cli-tools .

Image Details

  • Base Image: alpine:latest
  • Size: ~10MB (minimal footprint)
  • Shell: bash (default)

License

MIT

About

A minimal Alpine-based Docker image with essential CLI tools for scripting and automation.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors