https://github.com/mmucklo/docker-symfony
Docker for symfony with Nginx + PHP 7.2 with most of the bells and whistles including correct xdebug settings for PHPStorm on Mac or PC
https://github.com/mmucklo/docker-symfony
docker phpstorm symfony xdebug
Last synced: 4 months ago
JSON representation
Docker for symfony with Nginx + PHP 7.2 with most of the bells and whistles including correct xdebug settings for PHPStorm on Mac or PC
- Host: GitHub
- URL: https://github.com/mmucklo/docker-symfony
- Owner: mmucklo
- License: mit
- Created: 2017-06-29T07:09:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-03-23T07:12:54.000Z (over 5 years ago)
- Last Synced: 2025-01-23T01:26:12.566Z (6 months ago)
- Topics: docker, phpstorm, symfony, xdebug
- Language: Dockerfile
- Homepage:
- Size: 18.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Easy Docker setup for Symfony development
## Getting Started:
* Copy env.sample to .env
* Edit .env and change SYMFONY_ROOT to the right directory (where you find app/ web/ src/ vendor/ etc.)
* Fork as necessary and modify# Running
* docker-compose up
* http://localhost:8080/
* (or whatever you set NGINX_PORT to in .env)
* (If you don't have symfony installed yet, see the [Install symfony](#install-symfony) section)# Composer
* docker-compose exec php bash
* composer.phar# Install symfony
* mkdir src
* docker-compose exec php bash
* cd /var/www
* composer.phar create-project symfony/website-skeleton symfony# License
MIT