18 lines
317 B
YAML
18 lines
317 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
postgres:
|
|
container_name: personadb
|
|
image: postgres:15
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: persona
|
|
ports:
|
|
- "5433:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres_data:
|