fix(docker-compose): correct file extension from .yaml to .yml for database configuration

This commit is contained in:
Mauricio Siu
2025-04-12 17:16:54 -06:00
parent ff92e988bf
commit 93dd1c3bc1
2 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ services:
POSTGRES_PASSWORD: password POSTGRES_PASSWORD: password
POSTGRES_DB: mydatabase POSTGRES_DB: mydatabase
volumes: volumes:
- postgres_data:/var/lib/postgresql/data - postgres_data-include:/var/lib/postgresql/data
volumes: volumes:
postgres_data: postgres_data-include:

View File

@@ -1,5 +1,5 @@
include: include:
- db-compose.yaml # Incluye la configuración de la base de datos - db-compose.yml # Incluye la configuración de la base de datos
services: services:
web: web: