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