You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

497 B

Sample kiosk application

Build the container image.

podman build -t localhost/kiosk-app:latest .

Run the container image.

podman run -it --rm --name kiosk-app -p 5000:5000 localhost/kiosk-app:latest

Test it.

curl -I http://localhost:5000/

Login to the registry.

podman login quay.io

Publish it to the registry.

podman tag localhost/kiosk-app:latest quay.io/nmasse_itix/kiosk-app:latest
podman push quay.io/nmasse_itix/kiosk-app:latest