Sign inSign up

maliksalman/jump

By maliksalman

Updated 12 months ago

Light weight image to use as a jump container

Image
0

10K+

maliksalman/jump repository overview

jump docker image

Creates a minimal alpine linux container with useful utilities and DNS lookup related tools. Notable included tools are:

  • bash, sh, screen
  • curl, nc, dig, nslookup
  • ssh, ssh-keygen, openssl, etc
  • jq
  • git

The 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 

Tag summary

Content type

Image

Digest

sha256:fcbf554e3

Size

50.1 MB

Last updated

12 months ago

docker pull maliksalman/jump