16 lines
298 B
YAML
16 lines
298 B
YAML
version: '3.8'
|
|
services:
|
|
db:
|
|
image: postgres:15
|
|
restart: unless-stopped
|
|
environment:
|
|
- POSTGRES_USER=debt_manager
|
|
- POSTGRES_PASSWORD=z3AwEBXF5jD5nQyVT4Y7dMBx
|
|
ports:
|
|
- '5432:5432'
|
|
volumes:
|
|
- db:/var/lib/postgresql/data
|
|
volumes:
|
|
db:
|
|
driver: local
|