github.com/guilhermebr/docker@v1.4.2-0.20150428121140-67da055cebca/docs/sources/userguide/level1.md (about)

     1  page_title: Docker images test
     2  page_description: How to work with Docker images.
     3  page_keywords: documentation, docs, the docker guide, docker guide, docker, docker platform, virtualization framework, docker.io, Docker images, Docker image, image management, Docker repos, Docker repositories, docker, docker tag, docker tags, Docker Hub, collaboration
     4  
     5  <a title="back" class="dockerfile back" href="/userguide/dockerimages/#creating-our-own-images">Back</a>
     6  
     7  # Dockerfile tutorial
     8  
     9  ## Test your Dockerfile knowledge - Level 1
    10  
    11  ### Questions
    12  
    13  <div name="level1_questions">
    14  	What is the Dockerfile instruction to specify the base image ?<br />
    15  	<input type="text" class="level" id="level1_q0"/>
    16  	<div class="alert alert-error level_error" id="level1_error0" style="display:none;">The right answer was <code>FROM</code></div>
    17  	<br>
    18  	What is the Dockerfile instruction to execute any commands on the current image and commit the results?<br />
    19  	<input type="text" class="level" id="level1_q1"/>
    20  	<div class="alert alert-error level_error" id="level1_error1" style="display:none;">The right answer was <code>RUN</code></div>
    21  	<br>
    22  	What is the Dockerfile instruction to specify the maintainer of the Dockerfile?<br />
    23  	<input type="text" class="level" id="level1_q2"/>
    24  	<div class="alert alert-error level_error" id="level1_error2" style="display:none;">The right answer was <code>MAINTAINER</code></div>
    25  	<br>
    26  	What is the character used to add comment in Dockerfiles?<br />
    27  	<input type="text" class="level" id="level1_q3"/>
    28  	<div class="alert alert-error level_error" id="level1_error3" style="display:none;">The right answer was <code>#</code></div>
    29  	<p>
    30  	<div class="alert alert-success" id="all_good" style="display:none;">Congratulations, you made no mistake!<br />
    31  	Tell the world <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.docker.io/learn/dockerfile/level1/" data-text="I just successfully answered questions of the #Dockerfile tutorial Level 1. What's your score?" data-via="docker" >Tweet</a><br />
    32  	And try the next challenge: <a href="#fill-the-dockerfile">Fill the Dockerfile</a>
    33  	</div>
    34  	<div class="alert alert-error" id="no_good" style="display:none;">Your Dockerfile skills are not yet perfect, try to take the time to read this tutorial again.</div>
    35  	<div class="alert alert-block" id="some_good" style="display:none;">You're almost there! Read carefully the sections corresponding to your errors, and take the test again!</div>
    36  	</p>
    37  	<button class="btn btn-primary" id="check_level1_questions">Check your answers</button>
    38  </div>
    39  
    40  ### Fill the Dockerfile
    41  Your best friend Eric Bardin sent you a Dockerfile, but some parts were lost in the ocean. Can you find the missing parts?
    42  <div class="form-inline">
    43  <pre>
    44  &#35; This is a Dockerfile to create an image with Memcached and Emacs installed. <br>
    45  &#35; VERSION       1.0<br>
    46  &#35; use the ubuntu base image provided by dotCloud
    47  <input type="text" class="l_fill" id="from" /> ub<input type="text" class="l_fill" id="ubuntu" /><br>
    48  <input type="text" class="l_fill" id="maintainer" /> E<input type="text" class="l_fill" id="eric" /> B<input type="text" class="l_fill" id="bardin" />, eric.bardin@dotcloud.com<br>
    49  &#35; make sure the package repository is up to date
    50  <input type="text" class="l_fill" id="run0"/> echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
    51  <input type="text" class="l_fill" id="run1" /> apt-get update<br>
    52  &#35; install memcached
    53  RUN apt-get install -y <input type="text" class="l_fill" id="memcached" /><br>
    54  &#35; install emacs
    55  <input type="text" class="l_fill" id="run2"/> apt-get install -y emacs23
    56  </pre>
    57  </div>
    58  
    59  <div class="alert alert-success" id="dockerfile_ok" style="display:none;">Congratulations, you successfully restored Eric's Dockerfile! You are ready to containerize the world!.<br />
    60  Tell the world! <a href="https://twitter.com/share" class="twitter-share-button" data-url="https://www.docker.io/learn/dockerfile/level1/" data-text="I just successfully completed the 'Fill the Dockerfile' challenge of the #Dockerfile tutorial Level 1" data-via="docker" >Tweet</a>
    61  </div>
    62  <div class="alert alert-error" id="dockerfile_ko" style="display:none;">Wooops, there are one or more errors in the Dockerfile. Try again.</div>
    63  <br>
    64  <button class="btn btn-primary" id="check_level1_fill">Check the Dockerfile</button></p>
    65  
    66  ## What's next?
    67  
    68  <p>In the next level, we will go into more detail about how to specify which command should be executed when the container starts,
    69  which user to use, and how expose a particular port.</p>
    70  
    71  <a title="back" class="btn btn-primary back" href="/userguide/dockerimages/#creating-our-own-images">Back</a>
    72  <a title="next level" class="btn btn-primary" href="/userguide/level2">Go to the next level</a>