Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eko/docker-symfony
Run a Symfony application using Docker & docker-compose
https://github.com/eko/docker-symfony
docker docker-symfony kibana nginx php-fpm symfony
Last synced: 24 days ago
JSON representation
Run a Symfony application using Docker & docker-compose
- Host: GitHub
- URL: https://github.com/eko/docker-symfony
- Owner: eko
- License: 0bsd
- Created: 2015-04-25T08:33:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-11-20T20:25:16.000Z (almost 2 years ago)
- Last Synced: 2024-09-28T13:03:28.686Z (about 1 month ago)
- Topics: docker, docker-symfony, kibana, nginx, php-fpm, symfony
- Language: Dockerfile
- Size: 157 KB
- Stars: 1,293
- Watchers: 59
- Forks: 475
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-list-docker - docker-symfony - compose (symfony)
README
docker-symfony
==============[![Build Status](https://secure.travis-ci.org/eko/docker-symfony.png?branch=master)](http://travis-ci.org/eko/docker-symfony)
This is a complete stack for running Symfony 5 (latest version), PHP8 and ELK stack using docker-compose tool.
# Installation
First, clone this repository:
```bash
$ git clone https://github.com/eko/docker-symfony.git
```Next, put your Symfony application into `symfony` folder and do not forget to add `symfony.localhost` in your `/etc/hosts` file.
Make sure you adjust `database_host` in `parameters.yml` to the database container alias "db" (for Symfony < 4)
Make sure you adjust `DATABASE_URL` in `env` to the database container alias "db" (for Symfony >= 4)Then, run:
```bash
$ docker-compose up
```You are done, you can visit your Symfony application on the following URL: `http://symfony.localhost` (and access Kibana on `http://symfony.localhost:81`)
_Note :_ you can rebuild all Docker images by running:
```bash
$ docker-compose build
```# How it works?
Here are the `docker-compose` built images:
* `db`: This is the MySQL database container (can be changed to postgresql or whatever in `docker-compose.yml` file),
* `php`: This is the PHP-FPM container including the application volume mounted on,
* `nginx`: This is the Nginx webserver container in which php volumes are mounted too,
* `elasticsearch`: This is the Elasticsearch server used to store our web server and application logs,
* `logstash`: This is the Logstash tool from Elastic Stack that allows to read logs and send them into our Elasticsearch server,
* `kibana`: This is the Kibana UI that is used to render logs and create beautiful dashboards.This results in the following running containers:
```bash
> $ docker-compose ps
Name Command State Ports
-----------------------------------------------------------------------------------------------------------
mysql docker-entrypoint.sh --def ... Up 0.0.0.0:3306->3306/tcp, 33060/tcp
elasticsearch /usr/local/bin/docker-entr ... Up 0.0.0.0:9200->9200/tcp, 9300/tcp
kibana /usr/local/bin/dumb-init - ... Up 0.0.0.0:81->5601/tcp
logstash /usr/local/bin/docker-entr ... Up 5044/tcp, 9600/tcp
nginx nginx Up 443/tcp, 0.0.0.0:80->80/tcp
php-fpm php-fpm7 -F Up 0.0.0.0:9000->9001/tcp
```# Environment Customizations
You can customize the exposed ports and other parameters changing the docker-compose .env file.
# Read logs
You can access Nginx and Symfony application logs in the following directories on your host machine:
* `logs/nginx`
* `logs/symfony`# Use Kibana!
You can also use Kibana to visualize Nginx & Symfony logs by visiting `http://symfony.localhost:81`.
# Use xdebug!
Start by updating your docker-compose .env file with `PHP_XDEBUG_MODE=debug` (or any other configuration you need as seen in the [Xdebug documentation](https://xdebug.org/docs/all_settings#mode)).
You will need to re-build the php container for this value to take effect.Configure your IDE to use port 5902 for XDebug.
Docker versions below 18.03.1 don't support the Docker variable `host.docker.internal`.
In that case you'd have to swap out `host.docker.internal` with your machine IP address in php-fpm/xdebug.ini.# Code license
You are free to use the code in this repository under the terms of the 0-clause BSD license. LICENSE contains a copy of this license.