Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ger86/symfony-docker
This is a complete stack for running Symfony 6 with PHP-FPM 8.2 and MySQL 8 into Docker containers using docker-compose tool.
https://github.com/ger86/symfony-docker
docker docker-symfony mysql mysql8 nginx php php-74 php-81 php-fpm symfony symfony-6 symfony-docker symfony5 symfony6
Last synced: about 11 hours ago
JSON representation
This is a complete stack for running Symfony 6 with PHP-FPM 8.2 and MySQL 8 into Docker containers using docker-compose tool.
- Host: GitHub
- URL: https://github.com/ger86/symfony-docker
- Owner: ger86
- License: gpl-3.0
- Created: 2019-12-10T11:19:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-16T19:23:45.000Z (10 months ago)
- Last Synced: 2024-12-15T18:09:57.251Z (7 days ago)
- Topics: docker, docker-symfony, mysql, mysql8, nginx, php, php-74, php-81, php-fpm, symfony, symfony-6, symfony-docker, symfony5, symfony6
- Language: PHP
- Homepage:
- Size: 12.1 MB
- Stars: 280
- Watchers: 15
- Forks: 157
- Open Issues: 11
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# 🐳 Docker + PHP 8.2 + MySQL + Nginx + Symfony 6.2 Boilerplate
## Description
This is a complete stack for running Symfony 6.2 into Docker containers using docker-compose tool.
It is composed by 4 containers:
- `nginx`, acting as the webserver.
- `php`, the PHP-FPM container with the 8.2 version of PHP.
- `db` which is the MySQL database container with a **MySQL 8.0** image.## Installation
1. 😀 Clone this repo.
2. If you are working with Docker Desktop for Mac, ensure **you have enabled `VirtioFS` for your sharing implementation**. `VirtioFS` brings improved I/O performance for operations on bind mounts. Enabling VirtioFS will automatically enable Virtualization framework.
3. Create the file `./.docker/.env.nginx.local` using `./.docker/.env.nginx` as template. The value of the variable `NGINX_BACKEND_DOMAIN` is the `server_name` used in NGINX.
4. Go inside folder `./docker` and run `docker compose up -d` to start containers.
5. You should work inside the `php` container. This project is configured to work with [Remote Container](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) extension for Visual Studio Code, so you could run `Reopen in container` command after open the project.
6. Inside the `php` container, run `composer install` to install dependencies from `/var/www/symfony` folder.
7. Use the following value for the DATABASE_URL environment variable:
```
DATABASE_URL=mysql://app_user:helloworld@db:3306/app_db?serverVersion=8.0.33
```You could change the name, user and password of the database in the `env` file at the root of the project.
## To learn more
I have recorded a Youtube session explaining the different parts of this project. You could see it here:
[Boilerplate para Symfony basado en Docker, NGINX y PHP8](https://youtu.be/A82-hry3Zvw)