Advertisement
Guest User

Untitled

a guest
Dec 1st, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. # This file is a "template" of which env vars need to be defined for your application
  2. # Copy this file to .env file for development, create environment variables when deploying to production
  3. # https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
  4.  
  5. ###> symfony/framework-bundle ###
  6. APP_ENV=dev
  7. APP_SECRET=dbbadcc1f54666798b102a02759eb75d
  8. #TRUSTED_PROXIES=127.0.0.1,127.0.0.2
  9. #TRUSTED_HOSTS=localhost,example.com
  10. ###< symfony/framework-bundle ###
  11.  
  12. ###> doctrine/doctrine-bundle ###
  13. # Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
  14. # For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
  15. # Configure your db driver and server_version in config/packages/doctrine.yaml
  16. DATABASE_URL=mysql://botman:botman@mariadb:3306/botman
  17. ###< doctrine/doctrine-bundle ###
  18.  
  19. ###> symfony/swiftmailer-bundle ###
  20. # For Gmail as a transport, use: "gmail://username:password@localhost"
  21. # For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
  22. # Delivery is disabled by default via "null://localhost"
  23. MAILER_URL=null://localhost
  24. ###< symfony/swiftmailer-bundle ###
  25.  
  26. ### Documentation available at https://docs.wodby.com/stacks/php/local
  27. ### Changelog can be found at https://github.com/wodby/docker4php/releases
  28. ###
  29. ### Images tags format is [VERSION]-[STABILITY_TAG]
  30. ###
  31. ### [VERSION] is usually a version of application running in a container
  32. ### [STABILITY_TAG] is a version of an image (not application)
  33. ### [STABILITY_TAG] correspond to a git tag of corresponding image repository
  34. ###
  35. ### EXAMPLE: wodby/mariadb:10.2-3.1.2 has MariaDB 10.2 and stability tag 3.1.2
  36. ### New stability tags include patch updates for applications and other fixes/improvements
  37. ### You can find all details of this image at https://github.com/wodby/mariadb
  38. ###
  39. ### ! We highly encourage to use images only with stability tags
  40.  
  41. ### PROJECT SETTINGS
  42.  
  43. PROJECT_NAME=mercury
  44. PROJECT_BASE_URL=mercury.docker.localhost
  45.  
  46. DB_ROOT_PASSWORD=password
  47. DB_NAME=botman
  48. DB_USER=botman
  49. DB_PASSWORD=botman
  50.  
  51. DB_HOST=mariadb
  52. DB_DRIVER=mysql
  53.  
  54. ### --- PHP ----
  55.  
  56. PHP_TAG=7.2-dev-4.5.3
  57. #PHP_TAG=7.2-dev-macos-4.5.3
  58.  
  59. ### --- NGINX ----
  60.  
  61. NGINX_TAG=1.15-5.0.3
  62. #NGINX_TAG=1.14-5.0.3
  63.  
  64. ### --- NODE ---
  65.  
  66. NODE_TAG=10.9-0.4.0
  67. #NODE_TAG=8.11-0.4.0
  68. #NODE_TAG=6.14-0.4.0
  69.  
  70. ### --- MARIADB ----
  71.  
  72. MARIADB_TAG=10.3-3.3.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement