Created
August 8, 2019 09:08
-
-
Save stefpe/673a419b590dbf9c84e355a78b33d4e4 to your computer and use it in GitHub Desktop.
symfony setup mac osx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
php_api: | |
image: dockerwest/php-symfony:7.2 | |
container_name: php | |
volumes: | |
- ./:/var/www | |
environment: | |
- APP_ENV=dev | |
- DEVELOPMENT=1 | |
- PHP_EXTRA_MODULES=xdebug | |
- XDEBUG_CONFIG=remote_host=docker.for.mac.localhost | |
- C_UID=1000 | |
- G_UID=1000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment