12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- postgresdata:
- image: postgres
- command: /bin/true
- postgres:
- image: postgres
- volumes_from:
- - postgresdata
- environment:
- POSTGRES_PASSWORD: myhuginnpassword
- POSTGRES_USER: huginn
- huginn_web:
- image: dsander/huginn-single-process
- restart: always
- extends:
- file: environment.yml
- service: huginn_base
- environment:
- DATABASE_ADAPTER: postgresql
- ports:
- - 3000:3000
- links:
- - postgres
- huginn_threaded:
- image: dsander/huginn-single-process
- restart: always
- extends:
- file: environment.yml
- service: huginn_base
- environment:
- DATABASE_ADAPTER: postgresql
- links:
- - postgres
- command: /scripts/init bin/threaded.rb
- # huginn_schedule:
- # image: dsander/huginn-single-process
- # extends:
- # file: environment.yml
- # service: huginn_base
- # environment:
- # DATABASE_ADAPTER: postgresql
- # links:
- # - postgres
- # command: /scripts/init bin/schedule.rb
- # huginn_twitter_stream:
- # image: dsander/huginn-single-process
- # extends:
- # file: environment.yml
- # service: huginn_base
- # environment:
- # DATABASE_ADAPTER: postgresql
- # links:
- # - postgres
- # command: /scripts/init bin/twitter_stream.rb
- # huginn_dj1:
- # image: dsander/huginn-single-process
- # extends:
- # file: environment.yml
- # service: huginn_base
- # environment:
- # DATABASE_ADAPTER: postgresql
- # links:
- # - postgres
- # command: /scripts/init script/delayed_job run
|