fix:修正docker-compose-pgvecto.yml文件中,健康检查参数错误 (#4841)

This commit is contained in:
John Chen
2025-05-20 13:57:32 +08:00
committed by GitHub
parent d44c338059
commit f6dc2204f5

View File

@@ -23,7 +23,7 @@ services:
volumes:
- ./pg/data:/var/lib/postgresql/data
healthcheck:
test: ['CMD', 'pg_isready', '-U', 'postgres', '-d', 'aiproxy']
test: ['CMD', 'pg_isready', '-U', 'postgres', '-d', 'postgres']
interval: 5s
timeout: 5s
retries: 10