Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 309 Bytes

postgres.md

File metadata and controls

16 lines (13 loc) · 309 Bytes

Postgres

The postgres container image provides a preconfigured PostgreSQL database server for easy deployment in containerized environments.

tasks:
  "":
    env:
      POSTGRES_PASSWORD: password
    image: postgres
volumes:
- hostPath:
    path: volumes/postgres/data
  name: postgres.data