Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.88 KB | None | 0 0
  1. ### Application
  2. # Point to your application code, wish should be available at `/var/www`
  3. APPLICATION=../laravel
  4.  
  5. ### PHP version (Does not apply for HHVM)
  6. # PHP_VERSION=55
  7. # PHP_VERSION=56
  8. PHP_VERSION=71
  9.  
  10. ### PHP interpreter
  11. # PHP_INTERPRETER=hhvm
  12. PHP_INTERPRETER=php-fpm
  13.  
  14. ### WORKSPACE Container
  15. WORKSPACE_INSTALL_XDEBUG=true
  16. WORKSPACE_INSTALL_SOAP=false
  17. WORKSPACE_INSTALL_MONGO=false
  18. WORKSPACE_INSTALL_NODE=true
  19. WORKSPACE_INSTALL_YARN=true
  20. WORKSPACE_INSTALL_DRUSH=false
  21. WORKSPACE_INSTALL_AEROSPIKE_EXTENSION=true
  22. WORKSPACE_INSTALL_INSTALL_V8JS_EXTENSION=false
  23. WORKSPACE_COMPOSER_GLOBAL_INSTALL=true
  24. WORKSPACE_INSTALL_WORKSPACE_SSH=true
  25. WORKSPACE_INSTALL_LARAVEL_ENVOY=true
  26. WORKSPACE_INSTALL_DEPLOYER=false
  27. WORKSPACE_INSTALL_LINUXBREW=false
  28. WORKSPACE_INSTALL_MC=false
  29. WORKSPACE_PUID=1000
  30. WORKSPACE_PGID=1000
  31. WORKSPACE_NODE_VERSION=stable
  32. WORKSPACE_YARN_VERSION=latest
  33. WORKSPACE_TIMEZONE=UTC
  34. WORKSPACE_SSH_PORT=2222
  35.  
  36. ### PHP_FPM Container
  37. PHP_FPM_DOCKER_FILE=Dockerfile-71
  38. PHP_FPM_INSTALL_XDEBUG=true
  39. PHP_FPM_INSTALL_MONGO=false
  40. PHP_FPM_INSTALL_SOAP=true
  41. PHP_FPM_INSTALL_ZIP_ARCHIVE=true
  42. PHP_FPM_INSTALL_BCMATH=true
  43. PHP_FPM_INSTALL_PHPREDIS=true
  44. PHP_FPM_INSTALL_MEMCACHED=false
  45. PHP_FPM_INSTALL_OPCACHE=true
  46. PHP_FPM_INSTALL_EXIF=true
  47. PHP_FPM_INSTALL_AEROSPIKE_EXTENSION=true
  48. PHP_FPM_INSTALL_MYSQLI=false
  49. PHP_FPM_INSTALL_TOKENIZER=true
  50. PHP_FPM_INSTALL_INTL=false
  51.  
  52. ### NGINX Container
  53. NGINX_HOST_HTTP_PORT=80
  54. NGINX_HOST_HTTPS_PORT=443
  55. NGINX_HOST_LOG_PATH=./logs/nginx/
  56. NGINX_SITES_PATH=./nginx/sites/
  57.  
  58. ### MISC
  59. # Replace with your Docker Host IP (will be appended to /etc/hosts)
  60. DOCKER_HOST_IP=10.0.75.1
  61. # The Remote Interpreter entry matching name `laradock`
  62. PHP_IDE_CONFIG=serverName=laradock
  63. # Fix for windows users to make sure the application path works.
  64. COMPOSE_CONVERT_WINDOWS_PATHS=1
  65.  
  66. ### to be continue neo4j mongo rethinkdb redis aerospike pgadmin ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement