chore(deploy): Remove temporary postgres port exposure
Some checks are pending
CI / lint + typecheck + tests (push) Waiting to run
CI / docker build + push (push) Blocked by required conditions

Port 15432:5432 was added for diagnosis during BARAAA-64. Now that DB
connection is working (POSTGRES_HOST=10.0.9.4) and migrations are
applied, removing the temporary port exposure.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Paperclip FoundingEngineer 2026-05-02 22:14:22 +00:00
parent a3f9a34ec2
commit 2044e85f54

View file

@ -56,8 +56,6 @@ services:
PGDATA: /var/lib/postgresql/data/pgdata
volumes:
- postgres_data_v2:/var/lib/postgresql/data
ports:
- '15432:5432'
restart: unless-stopped
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U ${POSTGRES_USER:-agenthub} -d ${POSTGRES_DB:-agenthub}']