Advertisement
Guest User

Untitled

a guest
Jul 18th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. image: node
  2. pipelines:
  3. default:
  4. - step:
  5. script:
  6. - npm install
  7. - npm test
  8. services:
  9. - postgres
  10.  
  11. definitions:
  12. services:
  13. postgres:
  14. image: postgres
  15. environment:
  16. POSTGRES_DB: 'pipelines'
  17. POSTGRES_USER: 'test_user'
  18. POSTGRES_PASSWORD: 'test_user_password'
  19.  
  20. definitions:
  21. services:
  22. postgres:
  23. image: your_custom_image_based_on_postgres
  24. environment:
  25. POSTGRES_DB: 'pipelines'
  26. POSTGRES_USER: 'test_user'
  27. POSTGRES_PASSWORD: 'test_user_password'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement