Skip to content

Latest commit

 

History

History

docker

sq docker image

This is a docker image for sq. It is based on the alpine image and includes a bunch of additional tools.

Usage

Docker

# Shell into a one-time container.
$ docker run -it ghcr.io/neilotoole/sq zsh

# Start container named "sq-shell" detached (in the background).
$ docker run -d --name sq-shell ghcr.io/neilotoole/sq
# Shell into that container.
$ docker exec -it sq-shell zsh 

Kubernetes

# Start pod named "sq-shell".
$ kubectl run sq-shell --image ghcr.io/neilotoole/sq
# Shell into the pod.
$ kubectl exec -it sq-shell -- zsh