Light weight image to use as a jump container
10K+
Creates a minimal alpine linux container with useful utilities and DNS lookup related tools. Notable included tools are:
bash, sh, screencurl, nc, dig, nslookupssh, ssh-keygen, openssl, etcjqgitThe container has no entry-point defined. When using as a docker container, one can start an interactive bash shell like:
docker run -it maliksalman/jump bash
The bove container will terminate as soon you exit out of the bash shell. If starting it as a POD in kubernetes so it can be used as a jump POD, the following YAML can be used to create it:
apiVersion: v1
kind: Pod
metadata:
name: jumpy
spec:
containers:
- name: jump
image: maliksalman/jump
command:
- sleep
- 168h
The above will create a POD that will stay alive for a week. To create an interactive bash shell in the running POD, issue the following command:
kubectl exec -it jumpy -- bash
Content type
Image
Digest
sha256:fcbf554e3…
Size
50.1 MB
Last updated
12 months ago
docker pull maliksalman/jump