11 lines
195 B
YAML
11 lines
195 B
YAML
services:
|
|
postgres:
|
|
image: postgres:15.0
|
|
environment:
|
|
POSTGRES_DB: authorization
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
ports:
|
|
- 5432:5432
|
|
|
|
|