Compare commits

..

2 Commits

Author SHA1 Message Date
Dorian
99dd6894fd fix: default APP_PORT to 7755 to avoid conflicts 2026-03-17 00:44:23 +00:00
Dorian
e1f7394a6d fix: use POSTGRES_USER env var in healthcheck 2026-03-17 00:24:29 +00:00

View File

@@ -28,7 +28,7 @@ services:
VITE_NOSTR_RELAYS: "" VITE_NOSTR_RELAYS: ""
restart: unless-stopped restart: unless-stopped
ports: ports:
- "${APP_PORT:-7777}:7777" - "${APP_PORT:-7755}:7777"
depends_on: depends_on:
- relay - relay
- api - api
@@ -121,7 +121,7 @@ services:
networks: networks:
- indeedhub-network - indeedhub-network
healthcheck: healthcheck:
test: ["CMD-SHELL", "pg_isready -U indeedhub"] test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"]
interval: 10s interval: 10s
timeout: 5s timeout: 5s
retries: 5 retries: 5