Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 817 Bytes

hs3.md

File metadata and controls

12 lines (12 loc) · 817 Bytes

Http server

3. Push image into private docker registry.

  • A private docker registry has been created on 10.128.112.16:5000. We will use it as an insecure registry for our docker images.
  • Please follow official instructions and configure your docker engine to access our private registry.
  • Try below example procedures after you have successfully configured your docker engine.
    • $ docker pull gosharplite/duck:v4
    • $ docker tag gosharplite/duck:v4 10.128.112.16:5000/duck:v4
    • $ docker push 10.128.112.16:5000/duck:v4
    • $ docker pull 10.128.112.16:5000/duck:v4
    • $ docker run --publish 8093:8092 10.128.112.16:5000/duck:v4 -port=8092
  • Check your computer is now listening at port 8093.
    • $ sudo netstat -ntlp