Skip to content

A simple environment Docker for MySQL - PHP 7.4 - Composer - NPM - Apache

License

Notifications You must be signed in to change notification settings

rafaeljurkfitz/docker-php-apache-mysql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker-php-apache-mysql

Docker

Image

A pretty simplified Docker Compose workflow that sets up a LAMP (Linux, Apache ,MySQL, PHP) network of containers for local Laravel development or php projects with Apache.

Ports

Ports used in the project:

Software Port
php-apache 80
mysql 3306
xdebug 9000

Use

To get started, make sure you have Docker installed on your system and Docker Compose, and then clone this repository.

  1. Clone this project:

    git clone https://github.com/rafaeljurkfitz/docker-php-apache-mysql.git
  2. Inside the folder docker-php-apache-mysql and Generate your own .env to docker compose with the next command:

    cp .env.example .env
  3. You need Create or Put your laravel project in the folder src; to create follow the next instructions Here.

  4. Build the project whit the next commands:

    docker-compose up --build -d

Remember

The configuration of the database must be the same on both sides .

# .env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=db_name
DB_USERNAME=db_user
DB_PASSWORD=db_password
DB_ROOT_PASSWORD=secret
# src/.env
DB_CONNECTION=mysql
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=db_name
DB_USERNAME=db_user
DB_PASSWORD=db_password

The only change is the DB_HOST in the src/.env where is called to the container of mysql:

# source/.env
DB_HOST=mysql

Releases

No releases published

Packages

No packages published