Guest User

Untitled

a guest
Aug 17th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. db:
  5. image: postgres:9.6-alpine
  6. container_name: camunda_db
  7. ports:
  8. - "5432:5432"
  9. networks:
  10. - camunda-bpm
  11. environment:
  12. - POSTGRES_DB=camunda
  13. - POSTGRES_USER=camunda
  14. - POSTGRES_PASSWORD=camunda
  15.  
  16. platform:
  17. image: camunda/camunda-bpm-platform
  18. container_name: camunda_bpm
  19. ports:
  20. - "8080:8080"
  21. environment:
  22. - DB_DRIVER=org.postgresql.Driver
  23. - WAIT_FOR=db:5432
  24. - DB_URL=jdbc:postgresql://db:5432/camunda
  25. - DB_USERNAME=camunda
  26. - DB_PASSWORD=camunda
  27. networks:
  28. - camunda-bpm
  29. depends_on:
  30. - 'db'
  31.  
  32. networks:
  33. camunda-bpm:
Add Comment
Please, Sign In to add comment