mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-12 13:00:41 +02:00
16 lines
394 B
YAML
16 lines
394 B
YAML
version: "3"
|
|
|
|
services:
|
|
postgres:
|
|
restart: unless-stopped
|
|
container_name: generated_postgres_1
|
|
image: btcpayserver/postgres:13.13
|
|
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:
|