Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 401 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 401 Bytes

HelloWorld

simple service for deploy in openshift

create docker registry
docker run -d \ -p 5000:5000 \ --restart=always \ --name registry \ registry:2

push image to local registry
docker tag hello-world:1.0 localhost:5000/hello-world
docker push localhost:5000/hello-world

pull image from local registry
docker pull localhost:5000/image_name:tag

.#