super-graph/tmpl/docker-compose.yml

17 lines
285 B
YAML
Raw Permalink Normal View History

2019-11-15 01:35:19 -05:00
version: '3.4'
services:
db:
image: postgres
ports:
- "5432:5432"
2019-09-28 11:34:03 -04:00
{% app_name_slug %}_api:
image: dosco/super-graph:latest
environment:
GO_ENV: "development"
volumes:
- ./config:/config
ports:
- "8080:8080"
depends_on:
- db