Skip to content

asteris-llc/hello-world

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-hello-world

This image will be deprecated soon. Please use dockercloud/hello-world instead: https://hub.docker.com/r/dockercloud/hello-world/

Sample docker image to test docker deployments

Usage

To create the image tutum/hello-world, execute the following command on the docker-hello-world folder:

docker build -t tutum/hello-world .

You can now push your new image to the registry:

sudo docker push tutum/hello-world

Running your Hello World docker image

Start your image:

sudo docker run -d -p 80 tutum/hello-world

It will print the new container ID (like d35bf1374e88). Get the allocated external port:

sudo docker port d35bf1374e88 80

It will print the allocated port (like 4751). Test your deployment:

curl http://localhost:4751/

Hello world!

by http://www.tutum.co

Packages

No packages published

Languages

  • PHP 63.4%
  • Nginx 36.6%