Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafaeljurkfitz/docker-php-apache-mysql
A simple environment Docker for MySQL - PHP 7.4 - Composer - NPM - Apache
https://github.com/rafaeljurkfitz/docker-php-apache-mysql
apache apache2 composer docer-compose docker environment mysql npm php php74
Last synced: 26 days ago
JSON representation
A simple environment Docker for MySQL - PHP 7.4 - Composer - NPM - Apache
- Host: GitHub
- URL: https://github.com/rafaeljurkfitz/docker-php-apache-mysql
- Owner: rafaeljurkfitz
- License: mit
- Created: 2022-10-11T16:36:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-11T19:00:43.000Z (about 2 years ago)
- Last Synced: 2024-09-29T20:01:19.907Z (about 1 month ago)
- Topics: apache, apache2, composer, docer-compose, docker, environment, mysql, npm, php, php74
- Language: Dockerfile
- Homepage:
- Size: 108 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker-php-apache-mysql
![Docker](https://github.com/rafaeljurkfitz/docker-php-apache-mysql/workflows/Docker/badge.svg)
![Image](./.github/docker_apache_php_mysql.png)
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](https://docs.docker.com/) on your system and [Docker Compose](https://docs.docker.com/compose/install/), and then clone this repository.
1. Clone this project:
```sh
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:
```sh
cp .env.example .env
```3. You need **Create** or **Put** your laravel project in the folder `src`; to create follow the next instructions [Here](src/README.md).
4. Build the project whit the next commands:
```sh
docker-compose up --build -d
```---
## Remember
The configuration of the database **must be the same on both sides** .
```dotenv
# .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
``````dotenv
# 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`:
```dotenv
# source/.env
DB_HOST=mysql
```