2020-02-06 16:26:32 -05:00
|
|
|
version: "3.7"
|
|
|
|
|
|
|
|
|
|
# Service Definitions
|
|
|
|
|
services:
|
|
|
|
|
|
2020-03-08 11:16:53 -04:00
|
|
|
db:
|
|
|
|
|
environment:
|
2020-03-08 12:06:15 -04:00
|
|
|
POSTGRES_DB: "t2_stats"
|
2020-03-08 11:16:53 -04:00
|
|
|
POSTGRES_USER: "dev"
|
|
|
|
|
POSTGRES_PASSWORD: "dev"
|
2020-03-08 14:16:48 -04:00
|
|
|
ports:
|
|
|
|
|
- "5432:5432"
|
2020-03-08 12:06:15 -04:00
|
|
|
volumes:
|
|
|
|
|
- ./build/postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
2020-03-08 14:16:48 -04:00
|
|
|
- ./build/postgres/export_local_db.sh:/export_local_db.sh
|
2020-03-08 11:16:53 -04:00
|
|
|
|
|
|
|
|
|
2020-03-07 13:59:09 -05:00
|
|
|
parser:
|
2020-02-06 16:26:32 -05:00
|
|
|
environment:
|
|
|
|
|
DATABASE_URL: "postgres://dev:dev@db:5432/t2_stats"
|
2020-03-08 14:16:48 -04:00
|
|
|
ports:
|
|
|
|
|
- "8080:8080"
|
2020-02-06 16:26:32 -05:00
|
|
|
volumes:
|
2020-03-07 13:59:09 -05:00
|
|
|
- ./app/t2-stat-parser:/app
|