2013-03-26 21:25:42 +00:00
|
|
|
:title: Hello world example
|
2013-03-25 19:52:52 -07:00
|
|
|
:description: A simple hello world example with Docker
|
|
|
|
:keywords: docker, example, hello world
|
|
|
|
|
|
|
|
.. _hello_world:
|
|
|
|
|
|
|
|
Hello World
|
|
|
|
===========
|
2013-03-26 18:21:52 -07:00
|
|
|
|
2013-04-07 10:23:00 -04:00
|
|
|
.. include:: example_header.inc
|
|
|
|
|
2013-04-08 20:10:47 -07:00
|
|
|
This is the most basic example available for using Docker.
|
2013-03-26 18:21:52 -07:00
|
|
|
|
|
|
|
Download the base container
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
# Download a base image
|
|
|
|
docker pull base
|
|
|
|
|
2013-03-26 18:28:46 -07:00
|
|
|
The *base* image is a minimal *ubuntu* based container, alternatively you can select *busybox*, a bare
|
2013-03-26 18:21:52 -07:00
|
|
|
minimal linux system. The images are retrieved from the docker repository.
|
|
|
|
|
2013-03-25 19:52:52 -07:00
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
2013-03-26 18:21:52 -07:00
|
|
|
#run a simple echo command, that will echo hello world back to the console over standard out.
|
|
|
|
docker run base /bin/echo hello world
|
2013-03-25 19:52:52 -07:00
|
|
|
|
|
|
|
**Explanation:**
|
|
|
|
|
|
|
|
- **"docker run"** run a command in a new container
|
2013-03-26 18:21:52 -07:00
|
|
|
- **"base"** is the image we want to run the command inside of.
|
2013-03-25 19:52:52 -07:00
|
|
|
- **"/bin/echo"** is the command we want to run in the container
|
|
|
|
- **"hello world"** is the input for the echo command
|
|
|
|
|
2013-03-26 18:21:52 -07:00
|
|
|
|
|
|
|
|
2013-03-25 19:52:52 -07:00
|
|
|
**Video:**
|
|
|
|
|
|
|
|
See the example in action
|
|
|
|
|
|
|
|
.. raw:: html
|
|
|
|
|
|
|
|
<div style="margin-top:10px;">
|
2013-03-26 18:21:52 -07:00
|
|
|
<iframe width="560" height="350" src="http://ascii.io/a/2603/raw" frameborder="0"></iframe>
|
2013-03-25 19:52:52 -07:00
|
|
|
</div>
|
|
|
|
|
2013-03-26 18:21:52 -07:00
|
|
|
|
2013-03-25 19:52:52 -07:00
|
|
|
Continue to the :ref:`hello_world_daemon` example.
|