mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-12 21:10:42 +02:00
15 lines
352 B
YAML
15 lines
352 B
YAML
version: "3"
|
|
|
|
services:
|
|
postgres:
|
|
restart: unless-stopped
|
|
image: btcpayserver/postgres:13.7
|
|
command: [ "-c", "random_page_cost=1.0", "-c", "shared_preload_libraries=pg_stat_statements" ]
|
|
environment:
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
volumes:
|
|
- "postgres_datadir:/var/lib/postgresql/data"
|
|
|
|
volumes:
|
|
postgres_datadir:
|