14 lines
255 B
YAML
14 lines
255 B
YAML
version: "3"
|
|
|
|
services:
|
|
postgres:
|
|
restart: unless-stopped
|
|
image: btcpayserver/postgres:13.4-3
|
|
environment:
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
volumes:
|
|
- "postgres_datadir:/var/lib/postgresql/data"
|
|
|
|
volumes:
|
|
postgres_datadir:
|