base de datos creada y modelo de embbeddings descargado

This commit is contained in:
2025-09-15 00:33:05 +02:00
parent 39c134cf91
commit bc1eb7c79f
26 changed files with 65295 additions and 6 deletions
+23
View File
@@ -0,0 +1,23 @@
version: '3.8'
services:
postgres_ext:
build:
context: .
restart: always
ports:
- 55455:5432
environment:
POSTGRES_PASSWORD: mipassword
POSTGRES_USER: postgres
POSTGRES_DB: basededatos
healthcheck:
test:
- CMD-SHELL
- pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}
interval: 10s
timeout: 5s
retries: 5
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: {}