15 lines
222 B
YAML
15 lines
222 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
db:
|
|
image: postgres:17
|
|
environment:
|
|
POSTGRES_PASSWORD: postgres
|
|
volumes:
|
|
- /data/postgres/wynn:/var/lib/postgresql/data
|
|
ports:
|
|
- 54327:5432
|
|
|
|
volumes:
|
|
pgdata:
|