Allow CI container tests beside production
Test and deploy / test-and-deploy (push) Failing after 49s

This commit is contained in:
2026-07-31 06:17:58 -04:00
parent 7c9e5b0d0d
commit 1cc3f72a62
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ services:
db:
condition: service_healthy
# Nginx Proxy Manager routes https://roast.srmr.xyz to this host port.
ports: ["8090:8090"]
ports: ["${APP_PORT:-8090}:8090"]
restart: unless-stopped
db:
image: postgres:16-alpine
+1 -1
View File
@@ -31,7 +31,7 @@ test("Docker image starts against PostgreSQL and applies migrations", async (t)
const envFile = path.join(temp, "compose.env");
await writeFile(
envFile,
`POSTGRES_PASSWORD=container-test-password\nBOOTSTRAP_SETUP_TOKEN=\nPI_AGENT_CONFIG_DIR=${agentDir}\n`,
`POSTGRES_PASSWORD=container-test-password\nBOOTSTRAP_SETUP_TOKEN=\nPI_AGENT_CONFIG_DIR=${agentDir}\nAPP_PORT=18090\n`,
);
const project = `roastplanner${Date.now()}`;
const compose = (args, options = {}) =>