1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
services:
monitor:
image: citusdata/pg_auto_failover:demo
environment:
PGDATA: /tmp/pgaf
PG_AUTOCTL_DEBUG: 1
command: pg_autoctl create monitor --ssl-self-signed --auth trust --run
expose:
- 5432
node1:
image: citusdata/pg_auto_failover:demo
environment:
PGDATA: /tmp/pgaf
PGUSER: ad
PGDATABASE: analytics
PG_AUTOCTL_MONITOR: "postgresql://autoctl_node@monitor/pg_auto_failover"
command: pg_autoctl create postgres --ssl-self-signed --auth trust --pg-hba-lan --run
expose:
- 5432
node2:
image: citusdata/pg_auto_failover:demo
environment:
PGDATA: /tmp/pgaf
PGUSER: ad
PGDATABASE: analytics
PG_AUTOCTL_MONITOR: "postgresql://autoctl_node@monitor/pg_auto_failover"
command: pg_autoctl create postgres --ssl-self-signed --auth trust --pg-hba-lan --run
expose:
- 5432
node3:
image: citusdata/pg_auto_failover:demo
environment:
PGDATA: /tmp/pgaf
PGUSER: ad
PGDATABASE: analytics
PG_AUTOCTL_MONITOR: "postgresql://autoctl_node@monitor/pg_auto_failover"
command: pg_autoctl create postgres --ssl-self-signed --auth trust --pg-hba-lan --run
expose:
- 5432
demo-app:
image: citusdata/pg_auto_failover:demo
environment:
PGDATA: /tmp/pgaf
PGUSER: ad
PGDATABASE: analytics
PG_AUTOCTL_MONITOR: "postgresql://autoctl_node@monitor/pg_auto_failover"
PG_AUTOCTL_DEMO_CLIENTS: 10
PG_AUTOCTL_DEMO_DURATION: 125
PG_AUTOCTL_DEMO_FAILOVER_FREQ: 30
PG_AUTOCTL_DEMO_FAILOVER_FIRST: 45
command: pg_autoctl do demo run
|