mirror of
https://github.com/Unleash/unleash.git
synced 2024-10-28 19:06:12 +01:00
1632cd1ef9
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | dpage/pgadmin4 | minor | `6.20` -> `6.21` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, 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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS43MS4wIiwidXBkYXRlZEluVmVyIjoiMzUuNzEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
20 lines
384 B
YAML
20 lines
384 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:alpine3.15
|
|
environment:
|
|
POSTGRES_USER: unleash_user
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_DB: unleash
|
|
ports:
|
|
- 5432:5432
|
|
|
|
pgadmin:
|
|
image: dpage/pgadmin4:6.21
|
|
environment:
|
|
PGADMIN_DEFAULT_EMAIL: 'admin@admin.com'
|
|
PGADMIN_DEFAULT_PASSWORD: 'admin'
|
|
ports:
|
|
- 8080:80
|