18 lines
423 B
YAML
18 lines
423 B
YAML
version: "3.3"
|
|
services:
|
|
|
|
internship.api:
|
|
image: internship.api:latest
|
|
environment:
|
|
CONNECTIONSTRINGS__INTERNSHIPDATABASE: "Host=localhost;Port=5432;Database=postgres;Username=postgres;Password=szwoniu"
|
|
ASPNETCORE_ENVIRONMENT: Development
|
|
ports:
|
|
- 8080:80
|
|
|
|
db.postgres:
|
|
image: postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: szwoniu
|
|
ports:
|
|
- 5432:5432 |