14 lines
268 B
YAML
14 lines
268 B
YAML
services:
|
|
postgres:
|
|
image: postgres
|
|
environment:
|
|
- POSTGRES_DB=postgres
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- postgres-volume:/var/lib/postgresql
|
|
|
|
volumes:
|
|
postgres-volume: |