14 lines
266 B
YAML
14 lines
266 B
YAML
---
|
|
services:
|
|
postgres:
|
|
image: postgres:12.18
|
|
restart: always
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=admin
|
|
- POSTGRES_DB=website
|
|
volumes:
|
|
- ./pgdata:/var/lib/postgresql/data
|