Advertisement
Guest User

Untitled

a guest
Mar 8th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. version: '2'
  2. services:
  3. myBrand-app:
  4. image: myBrand
  5. environment:
  6. - _JAVA_OPTIONS=-Xmx512m -Xms256m
  7. - SPRING_PROFILES_ACTIVE=prod,swagger
  8. - SPRING_DATASOURCE_URL=jdbc:postgresql://myBrand-postgresql:5432/myBrand
  9. - SLEEP=10 # gives time for the database to boot before the application
  10. ports:
  11. - 8080:8080
  12. myBrand-postgresql:
  13. extends:
  14. file: postgresql.yml
  15. service: myBrand-postgresql
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement