Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 279 Bytes

PERSISTENT_STORAGE.md

File metadata and controls

14 lines (12 loc) · 279 Bytes

Persistent Storage (using PostgreSQL)

Used as repository for persisting data.

docker run \
  -d \
  -e POSTGRES_HOST_AUTH_METHOD=trust \
  -e POSTGRES_USER=user \
  -e POSTGRES_PASSWORD=password \
  -e POSTGRES_DB=dbname \
  -p 5432:5432 \
  postgres:15.1-alpine3.17