22 lines
368 B
YAML
22 lines
368 B
YAML
![]() |
version: '2'
|
||
|
|
||
|
services:
|
||
|
postgres:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile-postgres
|
||
|
environment:
|
||
|
POSTGRES_DB: oedb
|
||
|
POSTGRES_PASSWORD:
|
||
|
backend:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile-backend
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
environment:
|
||
|
DB_HOST: postgres
|
||
|
POSTGRES_PASSWORD:
|
||
|
volumes:
|
||
|
- .:/app/
|