Just a little Docker POC in order to have a complete stack for running Symfony into Docker containers using docker-compose tool.
First, clone this repository:
$ git clone [email protected]:eko/docker-symfony.gitAdd symfony.dev in your /etc/hosts file.
Either put your Symfony application into symfony folder or add .env to your symfony project with following content
COMPOSE_FILE=../docker-symfony/docker-compose.yml
COMPOSE_PROJECT_NAME=PROJECT_NAME
LOG_PATH=../PROJECT_NAME/logs
SRC_PATH=../PROJECT_NAME/src
XDEBUG_IP_ADDRESS=Make sure you adjust database_host in parameters.yml to the database container alias "db"
Then, run:
$ docker-compose upYou are done, you can visit your Symfony application on the following URL: http://symfony.dev (and access Kibana on http://symfony.dev:81)
Note : you can rebuild all Docker images by running:
$ docker-compose buildHere are the docker-compose built images:
db: This is the MySQL database container (can be changed to postgresql or whatever indocker-compose.ymlfile),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,elk: This is a ELK stack container which uses Logstash to collect logs, send them into Elasticsearch and visualize them with Kibana.
This results in the following running containers:
> $ docker-compose ps
        Name                      Command               State              Ports
        -------------------------------------------------------------------------------------------
        docker_db_1            /entrypoint.sh mysqld            Up      0.0.0.0:3306->3306/tcp
        docker_elk_1           /usr/bin/supervisord -n -c ...   Up      0.0.0.0:81->80/tcp
        docker_nginx_1         nginx                            Up      443/tcp, 0.0.0.0:80->80/tcp
        docker_php_1           php5-fpm -F                      Up      9001/tcpAttach to php container to call compose or symfony.
$ docker-compose exec php /bin/sh- Set local ip in .env, e.g.  
XDEBUG_IP_ADDRESS=10.0.75.1in .env (on windows/mac use VM IP) - In your IDE set XDebug listen port to 9030. Depending on IDE set IP.
 - Use XDebug Helper or similar to start debugging session
 
You can access Nginx and Symfony application logs in the following directories on your host machine:
logs/nginxlogs/symfony
You can also use Kibana to visualize Nginx & Symfony logs by visiting http://symfony.dev:81.
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.
