Guest User

Untitled

a guest
Nov 19th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. version: '3'
  2. services:
  3. app:
  4. image: decidim/decidim:0.7.2
  5. working_dir: /app
  6. volumes:
  7. - .:/app
  8. - bundle:/usr/local/bundle
  9. - node_modules:/app/node_modules
  10. environment:
  11. - PORT=3000
  12. - DATABASE_HOST=pg
  13. - DATABASE_USERNAME=postgres
  14. - RAILS_ENV=development
  15. ports:
  16. - 3000:3000
  17. links:
  18. - pg
  19. command: bundle exec puma
  20. pg:
  21. image: postgres
  22. volumes:
  23. - pg-data:/var/lib/postgresql/data
  24. volumes:
  25. node_modules: {}
  26. bundle: {}
  27. pg-data: {}
Add Comment
Please, Sign In to add comment