Guest User

Untitled

a guest
Mar 5th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. version: '3'
  2. services:
  3. core:
  4. build: ./core
  5. ports:
  6. - "8081:8081"
  7. environment:
  8. - "SPRING_PROFILES_ACTIVE=production"
  9. links:
  10. - postgresdb
  11. - solrdb
  12. postgresdb:
  13. image: postgres:9.4
  14. container_name: postgres
  15. ports:
  16. - "5432:5432"
  17. environment:
  18. - DB_DRIVER=org.postgresql.Driver
  19. - DB_URL=jdbc:postgresql://localhost:5432/db
  20. - DB_USERNAME=db
  21. - DB_PASSWORD=db
  22. solrdb:
  23. image: solr:5.5
  24. container_name: solr
  25. ports:
  26. - "8983:8983"
  27. environment:
  28. - DB_URL=http://localhost:8984/solr
Add Comment
Please, Sign In to add comment