2025-04-12 17:15:07 -06:00
|
|
|
services:
|
|
|
|
|
db:
|
|
|
|
|
image: postgres:latest # Usa la imagen precreada de PostgreSQL
|
|
|
|
|
environment:
|
|
|
|
|
POSTGRES_USER: user
|
|
|
|
|
POSTGRES_PASSWORD: password
|
|
|
|
|
POSTGRES_DB: mydatabase
|
|
|
|
|
volumes:
|
2025-04-12 17:16:54 -06:00
|
|
|
- postgres_data-include:/var/lib/postgresql/data
|
2025-04-12 17:15:07 -06:00
|
|
|
|
|
|
|
|
volumes:
|
2025-04-12 17:16:54 -06:00
|
|
|
postgres_data-include:
|