Skip to content

openshift-examples/simple-http-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Local build & push Docker Repository on Quay

sudo podman build --squash -t simple-http-server:latest .
sudo skopeo inspect containers-storage:localhost/simple-http-server:latest

sudo skopeo copy --authfile=/home/cloud-user/rbo-demo-demo-auth.json containers-storage:localhost/simple-http-server:latest docker://quay.io/rbo-demo/simple-http-server:latest

Build ubi-minimal local with Podman Desktop (MacOS, Apple Silicon)

export VERSION=$(date +%Y%m%d%H%M)
export IMAGE="quay.io/openshift-examples/simple-http-server:${VERSION}"
podman manifest rm ${IMAGE}
podman build --platform linux/amd64,linux/arm64  --manifest ${IMAGE} .
podman manifest push ${IMAGE}

Run local

podman run -ti --rm -p 8080:8080 $IMAGE 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published