9 lines
156 B
YAML
9 lines
156 B
YAML
|
services:
|
||
|
postgres:
|
||
|
image: postgres:latest
|
||
|
ports:
|
||
|
- "127.0.0.1:5432:5432"
|
||
|
volumes:
|
||
|
- ./pg_data:/var/lib/postgres
|
||
|
environment:
|