freshyo-deploy/replicator-side/docker-compose.yml
2026-01-30 17:49:12 +00:00

19 lines
582 B
YAML

services:
meatfarmer-db:
image: postgres:17
container_name: meatfarmer-db
restart: unless-stopped
ports:
- "7447:5432"
environment:
PRIMARY_HOST: 57.128.212.174
PRIMARY_PORT: 7447
REPLICATION_USER: replicator
REPLICATION_PASSWORD: replicator_password
volumes:
- ./data:/var/lib/postgresql/data
- ./postgresql.conf:/etc/postgresql/postgresql.conf:ro
- ./pg_hba.conf:/etc/postgresql/pg_hba.conf:ro
- ./replica-entrypoint.sh:/replica-entrypoint.sh:ro
command: ["/bin/bash", "/replica-entrypoint.sh"]