14 lines
195 B
YAML
14 lines
195 B
YAML
|
|
version: "3"
|
|
|
|
services:
|
|
|
|
postgres:
|
|
image: postgres:11
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
POSTGRES_PASSWORD: postgres
|
|
volumes:
|
|
- ./_data:/var/lib/postgresql/data
|