mirror of
https://github.com/Unleash/unleash.git
synced 2026-09-10 06:05:47 +00:00
73903f20e8
This PR contains the following updates: | Package | Update | Change | |---|---|---| | dpage/pgadmin4 | minor | `9.15` → `9.16` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/959) for more information. --- ### Configuration 📅 **Schedule**: (in timezone Europe/Madrid) - Branch creation - "after 7pm every weekday,before 5am every weekday" - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNDIuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI0Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
20 lines
383 B
YAML
20 lines
383 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:18-alpine
|
|
environment:
|
|
POSTGRES_USER: unleash_user
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_DB: unleash
|
|
ports:
|
|
- 5432:5432
|
|
|
|
pgadmin:
|
|
image: dpage/pgadmin4:9.16
|
|
environment:
|
|
PGADMIN_DEFAULT_EMAIL: 'admin@admin.com'
|
|
PGADMIN_DEFAULT_PASSWORD: 'admin'
|
|
ports:
|
|
- 8080:80
|