LF8/docker/local/docker-compose.yml
Renovate 1669b29bbd
All checks were successful
Quality Check / Tests (push) Successful in 1m3s
Build / Build and analyze (push) Successful in 1m56s
Quality Check / Checkstyle Main (push) Successful in 53s
Release / Release (push) Successful in 37s
chore(deps): update postgres docker tag to v17 (!22)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| postgres | major | `16.4` -> `17.0` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

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

Reviewed-on: #22
Reviewed-by: Jan Gleytenhoover <krisellp9@gmail.com>
Co-authored-by: Renovate <renovate@kjan.de>
Co-committed-by: Renovate <renovate@kjan.de>
2024-09-27 11:58:17 +00:00

18 lines
403 B
YAML

version: '3'
volumes:
lf8_starter_postgres_data:
driver: local
services:
postgres_for_lf8_starter:
container_name: lf8_starter_postgres_container
image: postgres:17.0
volumes:
- lf8_starter_postgres_data:/var/lib/postgresql/data
environment:
POSTGRES_DB: lf8_starter_db
POSTGRES_USER: lf8_starter
POSTGRES_PASSWORD: secret
ports:
- "5432:5432"