30 lines
681 B
YAML
30 lines
681 B
YAML
version: '2.4'
|
|
services:
|
|
super-graph:
|
|
build:
|
|
context: ./misc/containers/super-graph
|
|
args:
|
|
- HTTP_PROXY=${HTTP_PROXY}
|
|
- HTTPS_PROXY=${HTTPS_PROXY}
|
|
- http_proxy=${http_proxy}
|
|
- https_proxy=${https_proxy}
|
|
environment:
|
|
- SG_DATABASE_HOST=postgres
|
|
- SG_DATABASE_USER=daddy
|
|
- SG_DATABASE_PASSWORD=daddy
|
|
- USER_ID=${USER_ID}
|
|
- GO_ENV=dev
|
|
volumes:
|
|
- ./backend:/app
|
|
links:
|
|
- postgres
|
|
ports:
|
|
- 8080:8080
|
|
postgres:
|
|
image: postgres:12-alpine
|
|
environment:
|
|
- POSTGRES_PASSWORD=daddy
|
|
- POSTGRES_USER=daddy
|
|
- POSTGRES_DB=daddy
|
|
ports:
|
|
- 5432:5432 |