Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stangirard/alpine-powerhouse
Alpine with pre-packaged tools such as curl, DNS Utils, Git, PSQL, jq & Git under 20Mb
https://github.com/stangirard/alpine-powerhouse
alpine curl docker
Last synced: 25 days ago
JSON representation
Alpine with pre-packaged tools such as curl, DNS Utils, Git, PSQL, jq & Git under 20Mb
- Host: GitHub
- URL: https://github.com/stangirard/alpine-powerhouse
- Owner: StanGirard
- License: apache-2.0
- Created: 2020-11-29T19:07:31.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-07T03:01:02.000Z (about 2 months ago)
- Last Synced: 2024-09-07T04:55:55.818Z (about 2 months ago)
- Topics: alpine, curl, docker
- Language: Shell
- Homepage: https://hub.docker.com/r/stangirard/alpine-powerhouse
- Size: 25.4 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Alpine Powerhouse #
A [docker image](https://hub.docker.com/r/stangirard/alpine-powerhouse) for running alpine with already built in tools such as curl, dig, git, psql, jq, ssh, kubectl
This can be useful for debugging or CI purposes
The `VERSION` file contains the [alpine release](https://hub.docker.com/_/alpine) to be used as base.
## Example ##
```
$ docker pull stangirard/alpine-powerhouse
$ docker run --rm stangirard/alpine-powerhouse curl https://primates.dev
$ docker run -it stangirard/alpine-powerhouse bash
```## Base image ##
[Alpine](https://hub.docker.com/_/alpine)
Included packages from base image:
- Curl
- DNS Lookup utility
- jq
- psql-client
- git
- ssh
- kubectl## Check the installed tools
```bash
docker run -it --rm --entrypoint="./startup.sh" stangirard/alpine-powerhouse=================================================
curl 7.74.0
DiG 9.16.11
jq-master-v20200917-3811-g2b0a3891bf
psql (PostgreSQL) 13.1
git version 2.30.0
OpenSSH_8.4p1, OpenSSL 1.1.1i 8 Dec 2020
Kubectl {Major:"1", Minor:"20" }
=================================================
```