2019-09-07 23:27:26 +03:00
|
|
|
version: '3.7'
|
2019-01-08 05:25:21 +03:00
|
|
|
services:
|
|
|
|
application:
|
2019-03-13 15:34:13 +03:00
|
|
|
image: mirego/accent
|
2019-01-08 05:25:21 +03:00
|
|
|
container_name: accent
|
2019-03-13 15:34:13 +03:00
|
|
|
build: .
|
2019-01-08 05:25:21 +03:00
|
|
|
ports:
|
|
|
|
- 4000:4000
|
|
|
|
depends_on:
|
|
|
|
- postgresql
|
|
|
|
environment:
|
|
|
|
- PORT=4000
|
|
|
|
- DATABASE_URL=postgres://postgres@postgresql:5432/accent_development
|
|
|
|
postgresql:
|
|
|
|
image: postgres:10.3
|
|
|
|
container_name: accent-postgres
|
|
|
|
environment:
|
|
|
|
- POSTGRES_DB=accent_development
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
volumes:
|
|
|
|
- accent_psql:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
|
|
accent_psql:
|