mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-12 21:10:42 +02:00
17 lines
414 B
YAML
17 lines
414 B
YAML
version: "3"
|
|
|
|
services:
|
|
postgres:
|
|
restart: unless-stopped
|
|
container_name: generated_postgres_1
|
|
shm_size: 256mb
|
|
image: btcpayserver/postgres:13.18
|
|
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:
|