Files
plex-playlist/compose.ci.integration.yml
Xlorep DarkHelm c03457faed
Some checks failed
CICD / CICD Tests Complete (push) Blocked by required conditions
CICD / Build Release Images (push) Blocked by required conditions
CICD / Build Tester Images (push) Blocked by required conditions
CICD / Production Images Complete (push) Blocked by required conditions
CICD / Production Image Failures Postmortem (push) Blocked by required conditions
CICD / Source Lanes Failure Postmortem (push) Blocked by required conditions
CICD / Runtime Black-Box Integration Tests (push) Blocked by required conditions
CICD / Integration Tests Failure Postmortem (push) Blocked by required conditions
CICD / End-to-End Tests (push) Blocked by required conditions
CICD / E2E Tests Failure Postmortem (push) Blocked by required conditions
CICD / Promote Staging Images To Release (push) Blocked by required conditions
CICD / Build CICD Image Failure Postmortem (push) Has been cancelled
CICD / Build and Push CICD Images (push) Has been cancelled
CICD / Source Checks (push) Has been cancelled
CICD / Dependency Audits (Informational) (push) Has been cancelled
Renovate Dependency Updates / Renovate Dependencies (push) Failing after 2m12s
chore: Update postgres Docker tag to v18 (#79)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|

---

### Release Notes

### Configuration

📅 **Schedule**:

🚦 **Automerge**: Disabled

♻ **Rebasing**: Not rebasing

👥 **Reviewers**: None

---

*This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).*
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJtYWpvci11cGRhdGUiXX0=-->

Co-authored-by: Renovate Bot <renovate@darkhelm.org>
Reviewed-on: #79
2026-07-19 22:43:21 -04:00

23 lines
621 B
YAML

---
services:
database:
image: postgres:18-alpine
environment:
POSTGRES_DB: plex_playlist
POSTGRES_USER: plex_user
POSTGRES_PASSWORD: ${DB_PASSWORD:-plex_password}
healthcheck:
test: ["CMD-SHELL", "pg_isready -U plex_user -d plex_playlist"]
interval: 5s
timeout: 3s
retries: 12
backend:
image: ${DEPLOYABLE_BACKEND_IMAGE:-deployable-backend:local}
environment:
DATABASE_URL: ${DB_URL:-postgresql://plex_user:plex_password@database:5432/plex_playlist}
ENVIRONMENT: production
depends_on:
database:
condition: service_healthy