2019-11-15 01:35:19 -05:00
|
|
|
version: '3.4'
|
2019-09-27 02:19:24 -04:00
|
|
|
services:
|
2020-02-07 11:42:14 +05:30
|
|
|
# Postgres DB
|
2019-09-27 02:19:24 -04:00
|
|
|
db:
|
2020-02-24 02:37:21 +05:30
|
|
|
image: postgres:12
|
|
|
|
environment:
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: postgres
|
2019-09-27 02:19:24 -04:00
|
|
|
ports:
|
|
|
|
- "5432:5432"
|
|
|
|
|
2020-05-26 19:41:28 -04:00
|
|
|
{{ .AppNameSlug -}}_api:
|
2019-09-27 02:19:24 -04:00
|
|
|
image: dosco/super-graph:latest
|
|
|
|
environment:
|
|
|
|
GO_ENV: "development"
|
|
|
|
volumes:
|
|
|
|
- ./config:/config
|
|
|
|
ports:
|
|
|
|
- "8080:8080"
|
|
|
|
depends_on:
|
|
|
|
- db
|