19 lines
336 B
YAML
19 lines
336 B
YAML
|
---
|
||
|
version: '2.0'
|
||
|
services:
|
||
|
test:
|
||
|
build: .
|
||
|
volumes:
|
||
|
- ".:/app"
|
||
|
links:
|
||
|
- postgres
|
||
|
command: make test
|
||
|
environment:
|
||
|
SQLALCHEMY_DATABASE_URI: postgresql://lemur:lemur@postgres:5432/lemur
|
||
|
|
||
|
postgres:
|
||
|
image: postgres:9.4
|
||
|
environment:
|
||
|
POSTGRES_USER: lemur
|
||
|
POSTGRES_PASSWORD: lemur
|