Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. dependencies:
  2. build:
  3. - ruby:2.3.7
  4. - node:10.15.1
  5.  
  6. build_targets:
  7. - name: default
  8. commands:
  9. - gem install bundler -v '1.16.6'
  10. - bundle install
  11. - rake db:setup
  12. - bundle exec rspec
  13. environment:
  14. - RAILS_ENV=test
  15. container:
  16. image: yourbase/yb_ubuntu:16.04
  17. dependencies:
  18. containers:
  19. postgres:
  20. image: postgres
  21. environment:
  22. - POSTGRES_PASSWORD=ci
  23. - POSTGRES_USER=ci
  24. - POSTGRES_DB=blog_test
  25. port_check:
  26. port: 5432
  27. timeout: 35
  28.  
  29. ci:
  30. builds:
  31. - name: default
  32. build_target: default
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement