Нет описания http://j1x-huginn.herokuapp.com

postgresql.yml 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. postgresdata:
  2. image: postgres
  3. command: /bin/true
  4. postgres:
  5. image: postgres
  6. volumes_from:
  7. - postgresdata
  8. environment:
  9. POSTGRES_PASSWORD: myhuginnpassword
  10. POSTGRES_USER: huginn
  11. huginn_web:
  12. image: dsander/huginn-single-process
  13. restart: always
  14. extends:
  15. file: environment.yml
  16. service: huginn_base
  17. environment:
  18. DATABASE_ADAPTER: postgresql
  19. ports:
  20. - 3000:3000
  21. links:
  22. - postgres
  23. huginn_threaded:
  24. image: dsander/huginn-single-process
  25. restart: always
  26. extends:
  27. file: environment.yml
  28. service: huginn_base
  29. environment:
  30. DATABASE_ADAPTER: postgresql
  31. links:
  32. - postgres
  33. command: /scripts/init bin/threaded.rb
  34. # huginn_schedule:
  35. # image: dsander/huginn-single-process
  36. # extends:
  37. # file: environment.yml
  38. # service: huginn_base
  39. # environment:
  40. # DATABASE_ADAPTER: postgresql
  41. # links:
  42. # - postgres
  43. # command: /scripts/init bin/schedule.rb
  44. # huginn_twitter_stream:
  45. # image: dsander/huginn-single-process
  46. # extends:
  47. # file: environment.yml
  48. # service: huginn_base
  49. # environment:
  50. # DATABASE_ADAPTER: postgresql
  51. # links:
  52. # - postgres
  53. # command: /scripts/init bin/twitter_stream.rb
  54. # huginn_dj1:
  55. # image: dsander/huginn-single-process
  56. # extends:
  57. # file: environment.yml
  58. # service: huginn_base
  59. # environment:
  60. # DATABASE_ADAPTER: postgresql
  61. # links:
  62. # - postgres
  63. # command: /scripts/init script/delayed_job run