frankfurter/docker-compose.yml

16 lines
244 B
YAML
Raw Normal View History

2016-04-06 00:49:19 +02:00
version: '2'
services:
2016-04-11 15:28:22 +02:00
db:
2016-04-06 00:49:19 +02:00
image: postgres
2016-04-11 15:28:22 +02:00
web:
2016-04-06 00:49:19 +02:00
build: .
volumes:
2016-04-11 15:28:22 +02:00
- .:/app
2016-04-06 00:49:19 +02:00
ports:
- 8080:8080
environment:
2017-01-03 14:37:40 +01:00
RACK_ENV: production
DATABASE_URL: postgres://postgres@db/postgres
links:
2016-04-11 15:28:22 +02:00
- db