Symfony 4 template includes:
- PHP-fpm 7.2
- MySQL 5.7
- Xdebug 2.6.1
- Nginx
- Supervisord
- docker-compose
- Ubuntu 18.04
This project helps Symfony developers to start their new projects quickly using docker-compose. Docker image includes Xdebug.
Before installing this project, please, make sure you have installed docker and docker-compose
To install docker execute:
$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sh get-docker.sh
$ pip install docker-compose
Clone this project into your work directory:
$ git clone "https://github.com/trydirect/symfony4.git"
Then build it via docker-compose:
$ cd symfony4
$ docker-compose up -d
Url | App |
---|---|
http://localhost | Symfony home page |
http://localhost:5601 | Kibana |
http://localhost:9200 | Elasticsearch |
$ python tests.py
- Fork it (https://github.com/trydirect/symfony4/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request