├── .env.dist ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── doc ├── custom.md ├── schema.png └── schema.pptx ├── docker-compose.yml ├── elk └── logstash │ ├── logstash.conf │ └── patterns │ ├── default.conf │ ├── nginx.conf │ └── symfony.conf ├── nginx ├── Dockerfile ├── nginx.conf └── symfony.conf └── php7-fpm └── Dockerfile /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /logs 2 | /.data 3 | .env 4 | /.idea -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/README.md -------------------------------------------------------------------------------- /doc/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/doc/custom.md -------------------------------------------------------------------------------- /doc/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/doc/schema.png -------------------------------------------------------------------------------- /doc/schema.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/doc/schema.pptx -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /elk/logstash/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/elk/logstash/logstash.conf -------------------------------------------------------------------------------- /elk/logstash/patterns/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/elk/logstash/patterns/default.conf -------------------------------------------------------------------------------- /elk/logstash/patterns/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/elk/logstash/patterns/nginx.conf -------------------------------------------------------------------------------- /elk/logstash/patterns/symfony.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/elk/logstash/patterns/symfony.conf -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/symfony.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/nginx/symfony.conf -------------------------------------------------------------------------------- /php7-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjherraiz/docker-symfony-4/HEAD/php7-fpm/Dockerfile --------------------------------------------------------------------------------