Skip to content

Latest commit

 

History

History

extra-tooling

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Extra Tooling for Web Terminal

The Dockerfile in this directory creates an image with some additional tooling for use in Web Terminal.

Included Tools

Screenshots

#TODO: !

Build & Push Instructions

Configure the following environment variables to point to your username in your container registry:

export REGISTRY=<your container registry> 
export USER=<your registry's username>

With podman:

podman build . -t "${REGISTRY}"/${USER}/wto-tooling:extra-tooling
podman push "${REGISTRY}"/${USER}/wto-tooling:extra-tooling

With docker:

docker build . -t "${REGISTRY}"/${USER}/wto-tooling:extra-tooling
docker push "${REGISTRY}"/${USER}/wto-tooling:extra-tooling

Example

export REGISTRY="quay.io"
export USER="aobuchow"
podman build . -t "${REGISTRY}"/${USER}/wto-tooling:extra-tooling
podman push "${REGISTRY}"/${USER}/wto-tooling:extra-tooling