Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Configuration Management with Chef-Solo

You're reading from   Configuration Management with Chef-Solo A comprehensive guide to get you up and running with Chef-Solo.

Arrow left icon
Product type Paperback
Published in Jun 2014
Publisher
ISBN-13 9781783982462
Length 116 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Naveed ur Rahman Naveed ur Rahman
Author Profile Icon Naveed ur Rahman
Naveed ur Rahman
Arrow right icon
View More author details
Toc

Dockerfiles


As we have seen, we can execute individual commands from the Shell. Docker provides a decent method to invoke several commands and instructs the new container to perform a specific job.

Dockerfiles is a script based on different Docker commands. Each command contains an instruction, and it configures the new machine step by step. It can contain all the information from pulling a repository to starting any server.

They have a clean and simple syntax that makes a file more readable and clear. It is designed to be self-explanatory and allows commenting like other programming languages.

Here is an example of a file syntax:

# Comments
command argument argument …
# To echo Hello World
RUN echo "Hello World"

Let's create a basic Dockerfile and use the same example of Hello World as follows:

  1. Add the following content to Dockerfile:

    # Dockerfile
    FROM ubuntu
    RUN echo "Hello World"
  2. Build the Docker container with the following command:

    $ sudo docker build -t local/test_docker
    
  3. Our new container...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime