Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1.  
  2. spring:
  3. profiles: container
  4. datasource:
  5. url: jdbc:mysql://${MYSQL_HOST}:${MYSQL_PORT}/${MYSQL_DATABASE}
  6. username: ${MYSQL_USER}
  7. password: ${MYSQL_PASSWORD}
  8. initialize: true
  9. custom:
  10. adminUsername: admin
  11. adminPassword: ${ADMIN_PASSWORD}
  12. data:
  13. mongodb:
  14. authentication-database: admin
  15. database: ${MONGODB_DATABASE}
  16. host: ${MONGODB_HOST}
  17. port: 27017
  18. repositories:
  19. enabled: true
  20. username: ${MONGODB_USER}
  21. password: ${MONGODB_PASSWORD}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement