1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| # This configuration is intended for development purpose, it's **your** responsibility to harden it for production
| version: '3.8'
| services:
| pamapi-postgresql:
| image: postgres:13.4
| # volumes:
| # - ~/volumes/jhipster/pamapi/postgresql/:/var/lib/postgresql/data/
| environment:
| - POSTGRES_USER=pamapi
| - POSTGRES_PASSWORD=
| - POSTGRES_HOST_AUTH_METHOD=trust
| # If you want to expose these ports outside your dev PC,
| # remove the "127.0.0.1:" prefix
| ports:
| - 127.0.0.1:5432:5432
|
|