Skip to content

Latest commit

 

History

History

hello_world

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

.

Get Started

If you want to run a "hello world" docker project, please follow the steps below

Build Image

cd hello_world
docker build -t lad_hello_world .

Start a instance

 docker run -p 7860:7860 lad_hello_world 

Open the web page at http://0.0.0.0:7860, if success you can the following response

{
  "Hello": "World!"
}