保誠-保戶業務員媒合平台
charlie
2022-01-22 8b54d9e747d8a97e2ee7e8de3d957507e2ddf5f8
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