Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ricsanfre/docker-curl-jq
Docker alpine image with bash, curl and jq
https://github.com/ricsanfre/docker-curl-jq
alpine bash curl docker-image jq
Last synced: about 1 month ago
JSON representation
Docker alpine image with bash, curl and jq
- Host: GitHub
- URL: https://github.com/ricsanfre/docker-curl-jq
- Owner: ricsanfre
- License: mit
- Created: 2022-07-24T10:16:14.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-24T10:46:18.000Z (over 2 years ago)
- Last Synced: 2024-10-13T22:51:16.508Z (3 months ago)
- Topics: alpine, bash, curl, docker-image, jq
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/ricsanfre/docker-curl-jq
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Alpine Docker Image with curl, jq, bash
Lightweight docker image for troubleshooting purposes in Kubernetes environment to test APIs and parse JSON outputs.
Multiarchitecture AMD64 and ARM64 supported.
### Usage
Pull docker image `docker pull ricsanfre/docker-curl-jq`Start in Kubernetes environment
`kubectl run -it --rm --image=ricsanfre/docker-curl-jq curly`
### Example
**curl**
```
docker run ricsanfre/docker-curl-jq curl https://www.google.com
```
**curl, jq**
```
docker run ricsanfre/docker-curl-jq curl -s https://api.github.com/repos/github/hub/forks | jq .[].id
```