Renovate
1669b29bbd
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>
18 lines
403 B
YAML
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" |