2017-11-03 22:32:30 +01:00
|
|
|
version: '3'
|
2016-04-06 00:49:19 +02:00
|
|
|
services:
|
2016-04-11 15:28:22 +02:00
|
|
|
db:
|
2016-04-06 00:49:19 +02:00
|
|
|
image: postgres
|
2017-11-03 22:32:30 +01:00
|
|
|
volumes:
|
|
|
|
- data:/var/lib/postgresql/data
|
2016-04-11 15:28:22 +02:00
|
|
|
web:
|
2018-07-20 22:02:46 +02:00
|
|
|
command: puma -C config/puma.rb
|
2018-01-08 13:12:54 +01:00
|
|
|
entrypoint: bin/wait-for-it.sh db:5432 -s --
|
2016-04-06 00:49:19 +02:00
|
|
|
environment:
|
2017-01-03 14:37:40 +01:00
|
|
|
DATABASE_URL: postgres://postgres@db/postgres
|
2017-11-03 22:32:30 +01:00
|
|
|
expose:
|
2018-07-20 22:02:46 +02:00
|
|
|
- '3000'
|
2017-01-03 14:37:40 +01:00
|
|
|
links:
|
2016-04-11 15:28:22 +02:00
|
|
|
- db
|
2018-01-08 13:12:54 +01:00
|
|
|
scheduler:
|
|
|
|
command: bin/schedule
|
|
|
|
entrypoint: bin/wait-for-it.sh db:5432 -s --
|
|
|
|
environment:
|
|
|
|
DATABASE_URL: postgres://postgres@db/postgres
|
|
|
|
links:
|
|
|
|
- db
|
2017-11-03 22:32:30 +01:00
|
|
|
volumes:
|
|
|
|
data:
|