Guide
March 30th

Docker PHP laravel tutorial. Dockerize a PHP App in 3 minutes.

This quickstart guide provides a basic introduction to the Laravel framework running on docker. This is a great starting point if you are brand new to the Laravel framework or if you want to have your docker PHP app.

Prerequisites

Before you start, you need to have some certain prerequisites in place:

  • PHP 7.2+
  • Local machine running the latest version of Docker.

Get Started

Let's create a Laravel project and then see how we can dockerize it using Docker.

Laravel Requirements

The Laravel framework has a few system requirements:

  • PHP >= 5.5.9
  • PHP Extensions:
    • OpenSSLup
    • PDO
    • Mbstring
    • Tokenizer

Step 1 - Install Laravel

Laravel utilizes Composer to manage its dependencies. So, before using Laravel, make sure you have Composer installed on your machine.

Install Composer

Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. To a install it quickly, just open up a terminal and run this command:

$ curl -Ss getcomposer.org/installer | php

header image

Composer is multi-platform and it run equally well on Windows, Linux and macOS. Here you will get more information regarding how to install composer in each platform:

Step 2 - Create a Laravel Project

Via Laravel Installer

First, download the Laravel installer using Composer:

$ composer global require "laravel/installer"

header image

Once installed, you can use the laravel new command to create a fresh laravel project.

$ laravel new laraveltutorial

header image

Via Composer Create-Project

Alternatively, you may also install Laravel by issuing the Composer create-project command in your terminal:

$ composer create-project --prefer-dist laravel/laravel laraveltutorial

Here is a brief breakdown of the directories in a common Laravel application:

  • app/: This is the source folder where our application code lives. All controllers, policies, and models are inside this folder
  • bootstrap/: Holds the application's startup script and a few class map files
  • config/: Holds the app's configuration files. These are usually not modified directly but instead, rely on the values set up in the .env (environment) file at the root of the app
  • database/: Houses the database files including migrations, seeds and test factories
  • public/: Publicly accessible folder holding compiled assets and of course an index.php file
  • resources/: Contains front-end assets such as javascript files, language files, CSS/SASS files and all templates used in the application (called blade templates)
  • routes/: All routes in the application are inside here. There are a few different "scopes" of routes but the one we will be focusing on is the web.php file
  • storage/: All temporary cache files used by the application, session files, compiled view scripts and log files
  • tests/: Contains test files for the application such as unit tests and functional tests.
  • vendor/: All dependency packages installed with composer

Then, to install all dependencies and run the project, you need to run the following commads:

$ composer install
$ php artisan serve

You will see your Laravel server running on: http://127.0.0.1:8000

header image

Congratulations, you’ve created a Laravel project!

Note: For more extensive instructions on setting up Laravel, refer to the Laravel documentation here.

Step 3 - Dockerize the Project

Setup Docker

Before creating a container for the Laravel application and shipping it off, you need to install Docker on your local machine. For learning purpose, you will install Docker Community Edition. Select your OS from the list below and follow the setup instructions:

Make the docker App image

The next stage to improve your docker php development workflow is adding a Dockerfile to your project. The structure of a Dockerfile can be considered a series of instructions on how to build your container/image.

Start the Dockerfile by creating an empty file named Dockerfile in the root of your project. Then, complete each instruction according to the following example:

# Dockerfile
FROM php:7.2-cli

RUN apt-get update -y && apt-get install -y libmcrypt-dev

RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
RUN docker-php-ext-install pdo mbstring

WORKDIR /app
COPY . /app

RUN composer install

EXPOSE 8000
CMD php artisan serve --host=0.0.0.0 --port=8000

Building and Running the Container

Building the container is very straight forward once you have Docker and Docker Machine on your system. The following command will look for your Dockerfile and download all the necessary layers required to get your container image running. Afterwards, it will run the instructions in the Dockerfile and leave you with a container that is ready to start.

To build your php laravel docker container, you will use the docker build command and provide a tag or a name for the container, so you can reference it later when you want to run it. The final part of the command tells Docker which directory to build from.

$ cd
$ docker build -t laravel-tutorial .

The final step is to run the container you have just built using Docker:

$ docker run -it -p 8000:8000 laravel-tutorial

The command tells Docker to run the container and forward the exposed port 8000 to port 8000 on your local machine. After you run this command, you should be able to visit http://localhost:8000 in your browser.

You can see the Docker containers that are currently running on your system (along with their Container IDs) with:

$ docker ps -a

To turn off your Docker container, run:

$ docker stop container_id

Push to cloud

1. Create your app

In order to install your docker php example, just create a new app via cli or admin panel and set a port to 8000.

header image

2. Push your docker container

header image header image

3. Set up resources

header image

4. Logs and app status

header image

5. Release your app

After to click on the release button, your php docker tutorial will be deployed, Just click on the generated URL and you will get your app running.

header image header image

Now you can deploy your php laravel app without a massive build time.

Bonus 1: SSL certificate for HTTPS

It's already done for you. If you need to connect your custom domain, SSL certificate will be provided for it.


Bonus 2: Autoscaling

With autoscaling the app will be scaled up when CPU and RAM load goes up and scaled down when it goes down.

Now you can deploy your php laravel app without a massive build time.

Dockerize your Job

Just for $2/month
Share this article:

Ask a question

Please type your name.
Please provide your email address.
Please tell us a bit more

More great guides

Docker nodejs express tutorial

Docker NodeJS Express guide

Simple Nodejs Socket guide for docker deploy. Use it for comfort start with us.

Read Guide
Docker python django tutorial

Docker Python Django tutorial

This is a brief tutorial that presents how you can run a simple 'Hello World'-style web application written in Django in docker.

Read Guide
Docker PHP laravel tutorial

Docker PHP laravel tutorial

This quickstart guide provides a basic introduction to the Laravel framework running on docker. This is a great starting point if you are brand new to the Laravel framework or if you want to have your docker PHP app.

Read Guide
7 times faster deployment
Dockerize automaticaly completes deployment after receiving your Docker image
50% of AWS price
We don’t have any hidden prices and will never ask you to pay extra fee for our services
Open Sidebar Close Sidebar