ide configuration changes, add postgre to compose Co-authored-by: Maxchil <m.w.bohdanowicz@gmail.com>
16 lines
272 B
YAML
16 lines
272 B
YAML
version: "3.3"
|
|
services:
|
|
|
|
internship.api:
|
|
image: internship.api:latest
|
|
build: ../src/Internship.Api
|
|
ports:
|
|
- 8080:80
|
|
|
|
db.postgres:
|
|
image: postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: szwoniu
|
|
ports:
|
|
- 5432:5432 |