How do I dockerize an existing application...the basics

13,338

Solution 1

Your index.php is not really an application. The application is your Apache or nginx or even PHP's own server.

Because Docker uses features not available in the Windows core, you are running it inside an actual virtual machine. The only purpose for that would be training or preparing images for your real server environment.

There are two main concepts you need to understand for Docker: Images and Containers.

An image is a template composed of layers. Each layer contains only the differences between the previous layer and some offline system information. Each layer is fact an image. You should always make your image from an existing base, using the FROM directive in the Dockerfile (Reference docs at time of edit. Jan Vladimir Mostert's link is now a 404).

A container is an instance of an image, that has run or is currently running. When creating a container (a.k.a. running an image), you can map an internal directory from it to the outside. If there are files in both locations, the external directory override the one inside the image, but those files are not lost. To recover them you can commit a container to an image (preferably after stopping it), then launch a new container from the new image, without mapping that directory.

Solution 2

Imagine you have the following existing python2 application "hello.py" with the following content:

print "hello"

You have to do the following things to dockerize this application:

Create a folder where you'd like to store your Dockerfile in.

Create a file named "Dockerfile"

The Dockerfile consists of several parts which you have to define as described below:

Like a VM, an image has an operating system. In this example, I use ubuntu 16.04. Thus, the first part of the Dockerfile is:

FROM ubuntu:16.04

Imagine you have a fresh Ubuntu - VM, now you have to install some things to get your application working, right? This is done by the next part of the Dockerfile:

RUN     apt-get update && \ 
        apt-get upgrade -y && \
        apt-get install -y python

For Docker, you have to create a working directory now in the image. The commands that you want to execute later on to start your application will search for files (like in our case the python file) in this directory. Thus, the next part of the Dockerfile creates a directory and defines this as the working directory:

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

As a next step, you copy the content of the folder where the Dockerfile is stored in to the image. In our example, the hello.py file is copied to the directory we created in the step above.

COPY . /usr/src/app

Finally, the following line executes the command "python hello.py" in your image:

CMD [ "python", "hello.py" ]

The complete Dockerfile looks like this:

FROM ubuntu:16.04

RUN     apt-get update && \
        apt-get upgrade -y && \
        apt-get install -y python 

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY . /usr/src/app

CMD [ "python", "hello.py" ]

Save the file and build the image by typing in the terminal:

$ docker build -t hello .

This will take some time. Afterwards, check if the image "hello" how we called it in the last line has been built successfully:

$ docker images

Run the image:

docker run hello

The output shout be "hello" in the terminal.

This is a first start. When you use Docker for web applications, you have to configure ports etc.

Solution 3

You'll need to build a docker image first, using a dockerFile, you'd probably setup apache on it, tell the dockerFile to copy your index.php file into your apache and expose a port.

See http://docs.docker.com/reference/builder/

See my other question for an example of a docker file: Switching users inside Docker image to a non-root user (this is for copying over a .war file into tomcat, similar to copying a .php file into apache)

Share:
13,338
user2808895
Author by

user2808895

Updated on August 04, 2022

Comments

  • user2808895
    user2808895 almost 2 years

    I am using windows and have boot2docker installed. I've downloaded images from docker hub and run basic commands. BUT How do I take an existing application sitting on my local machine (lets just say it has one file index.php, for simplicity). How do I take that and put it into a docker image and run it?

  • Félix Adriyel Gagnon-Grenier
    Félix Adriyel Gagnon-Grenier almost 7 years
    I am... hesitant about this answer. Of course, the file index.php is not an application by itself, but the whole thing that can be launched from an index.php can indeed be an application. I mean, browser based CRM's are full fledged applications, as much as their desktops equivalents.